aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2021-03-10 21:37:10 +0200
committerAlex Shnitman <alexta69@gmail.com>2021-03-10 21:37:10 +0200
commit8118dfa6ac11c1f3790705825cb2ecb1d3998c1e (patch)
treee5f90c4b261e75440ca86f92d339d5930a1a0138 /.github
parentadd multiplatform build (diff)
downloadmetube-8118dfa6ac11c1f3790705825cb2ecb1d3998c1e.tar.gz
metube-8118dfa6ac11c1f3790705825cb2ecb1d3998c1e.tar.bz2
metube-8118dfa6ac11c1f3790705825cb2ecb1d3998c1e.zip
complete integration of mage build via github workflows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a2e0f5a..f7744f2 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -31,8 +31,10 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
- tags: ${{ secrets.DOCKERHUB_REPOSITORY }}:github
+ tags: ${{ secrets.DOCKERHUB_REPOSITORY }}:latest
+
dockerhub-sync-readme:
+ needs: dockerhub-build-push
runs-on: ubuntu-latest
steps:
- name: Sync README
bgstack15