Skip to content

Fix removing existing containers (#44) #85

Fix removing existing containers (#44)

Fix removing existing containers (#44) #85

Workflow file for this run

name: Tag latest
on:
push:
branches: [main]
env:
TAG_NAME: latest
jobs:
tag-repo:
runs-on: ubuntu-latest
outputs:
TAG_NAME: ${{ env.TAG_NAME }}
steps:
- uses: actions/checkout@v2
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