Upgrade dependencies #54
Workflow file for this run
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: Release VaultEnv | |
on: | |
push: | |
tags: | |
- 'vaultenv-[0-9]+.[0-9]+.[0-9]+**' | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Version | |
run: make print-v-vaultenv | |
- name: Pull images from private repo | |
run: | | |
echo "${{ secrets.PRIVATE_REGISTRY_PASSWORD }}" | docker login -u ${{ secrets.PRIVATE_REGISTRY_USERNAME }} --password-stdin dokken.azurecr.io | |
make pull-vaultenv | |
- name: Push images to public repo | |
run: | | |
echo "${{ secrets.PUBLIC_REGISTRY_PASSWORD }}" | docker login -u ${{ secrets.PUBLIC_REGISTRY_USERNAME }} --password-stdin | |
make release-vaultenv DOCKER_RELEASE_TAG=${GITHUB_REF##*/} |