Update README.md #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Docker Image Manifest | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'RELEASE' | |
- 'VERSION' | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
create-manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Create and push release manifest | |
run: | | |
docker manifest create imashen/zerotier-aio:release-1.14.0 \ | |
imashen/zerotier-aio:amd64 \ | |
imashen/zerotier-aio:arm64 | |
docker manifest push --purge imashen/zerotier-aio:release-1.14.0 |