aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/main.yml')
-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