Skip to content

Bump version: 1.1.4 → 1.1.5 #78

Bump version: 1.1.4 → 1.1.5

Bump version: 1.1.4 → 1.1.5 #78

Workflow file for this run

name: Tag latest
on:
push:
branches: [main]
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@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