Skip to content

fix permission issue in openshift deploys (#13) #15

fix permission issue in openshift deploys (#13)

fix permission issue in openshift deploys (#13) #15

Workflow file for this run

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