fix permission issue in openshift deploys (#13) #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: Tag latest | |
on: | |
push: | |
branches: [master] | |
env: | |
TAG_NAME: latest | |
jobs: | |
tag-repo: | |
if: "!contains(github.event.commits[0].message, 'Bump Version:')" | |
runs-on: ubuntu-latest | |
outputs: | |
TAG_NAME: ${{ env.TAG_NAME }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.NANOME_BOT_PAT }} | |
- name: git setup | |
run: | | |
git config --global user.name 'nanome-bot' | |
git config --global user.email '[email protected]' | |
push-to-registry: | |
needs: "tag-repo" | |
uses: ./.github/workflows/push-to-registry.yml | |
with: | |
tag: ${{needs.tag-repo.outputs.TAG_NAME}} | |
secrets: inherit |