We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e5267 commit c9b1029Copy full SHA for c9b1029
.github/workflows/build.yml
@@ -0,0 +1,20 @@
1
+name: Build and push Docker images
2
+on:
3
+ push:
4
+ branches:
5
+ - release
6
+jobs:
7
+ deploy:
8
+ runs-on: alpine-latest
9
+ steps:
10
+ - name: Login to GitHub Container Registry
11
+ uses: docker/login-action@v3
12
+ with:
13
+ registry: ghcr.io
14
+ username: ${{ github.repository_owner }}
15
+ password: ${{ secrets.GITHUB_TOKEN }}
16
+ - name: Build
17
+ uses: docker/build-push-action@v5.3.0
18
19
+ push: true
20
+ tags: ghcr.io/zphrs/ucsc-menu
.gitignore
@@ -1,4 +1,4 @@
/target
/.vscode
install
-.github
+secrets
0 commit comments