1.32.1 #1
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
# web-core image is meant to be used only by our safe-infrastructure repository | |
name: Deploy to Dockerhub | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
release: | |
types: [ released ] | |
jobs: | |
dockerhub-push: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev' || (github.event_name == 'release' && github.event.action == 'released') | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: arm64 | |
- uses: docker/setup-buildx-action@v3 | |
- name: Dockerhub login | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Deploy Main | |
if: github.ref == 'refs/heads/main' | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: safeglobal/safe-wallet-web:staging | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Deploy Develop | |
if: github.ref == 'refs/heads/dev' | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: safeglobal/safe-wallet-web:dev | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Deploy Tag | |
if: (github.event_name == 'release' && github.event.action == 'released') | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: | | |
safeglobal/safe-wallet-web:${{ github.event.release.tag_name }} | |
safeglobal/safe-wallet-web:latest | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |