Skip to content

Add EXIT_AFTER_INIT (#67) #10

Add EXIT_AFTER_INIT (#67)

Add EXIT_AFTER_INIT (#67) #10

Workflow file for this run

name: Bump version
on:
workflow_dispatch: # Allow manually running
push:
branches:
- main
paths:
- 'Dockerfile'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.REPO_GITHUB_SECRET }}
fetch_all_tags: false
default_bump: patch
- name: Create a GitHub release
uses: ncipollo/release-action@v1.13.0
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }}
generateReleaseNotes: true
makeLatest: true
# - name: Start build image
# run: |
# # Explicitly run our release workflow for this new tag
# gh workflow run docker-image.yml --ref ${{ steps.tag_version.outputs.new_tag }