Skip to content

Commit 8d329e8

Browse files
authored
Merge pull request #2 from aikdocs/nave
remove unused files and change to personal style
2 parents 03d1590 + 54ecd77 commit 8d329e8

File tree

3,140 files changed

+557
-158953
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,140 files changed

+557
-158953
lines changed

.github/workflows/auto-label-pr.yaml

-18
This file was deleted.

.github/workflows/auto-size-pr.yaml

-33
This file was deleted.

.github/workflows/build-image.yaml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build and Push Multi-Arch Docker Image
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
permissions:
9+
packages: write
10+
11+
jobs:
12+
build-and-push:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout Code
17+
uses: actions/checkout@v3
18+
19+
- name: Set up QEMU
20+
uses: docker/setup-qemu-action@v2
21+
with:
22+
platforms: linux/arm64, linux/amd64
23+
24+
- name: Set up Docker Buildx
25+
uses: docker/setup-buildx-action@v2
26+
27+
- name: Login to GitHub Container Registry
28+
uses: docker/login-action@v2
29+
with:
30+
registry: ghcr.io
31+
username: ${{ github.actor }}
32+
password: ${{ secrets.GITHUB_TOKEN }}
33+
34+
- name: Build and Push Docker Image
35+
uses: docker/build-push-action@v5
36+
with:
37+
context: .
38+
file: ./Dockerfile
39+
push: true
40+
tags: |
41+
ghcr.io/${{ github.repository }}/sophdoc:${{ github.ref_name }}
42+
ghcr.io/${{ github.repository }}/sophdoc:latest
43+
platforms: linux/amd64, linux/arm64

.github/workflows/corrupted-hyperlink.yml

-69
This file was deleted.

.github/workflows/main.path.yml

-91
This file was deleted.

.github/workflows/main.yml

-92
This file was deleted.

0 commit comments

Comments
 (0)