chore(deps): update docker/build-push-action digest to ef6cba3 (#155) #122
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: Automatic Semantic Release | |
on: | |
# workflow_dispatch # manual-only for testing | |
push: | |
branches: | |
- main | |
jobs: | |
new-release: | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_STEP_DEBUG: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 # Checkout our working repository | |
- name: Conventional Changelog Action | |
id: changelog | |
uses: TriPSs/conventional-changelog-action@v5 | |
with: | |
output-file: 'CHANGELOG.md' | |
- name: Verify Changelog Output | |
run: echo ${{ steps.changelog.outputs.skipped }} | |
- name: Create Release # This action will create the actual release | |
uses: actions/create-release@v1 | |
if: ${{ steps.changelog.outputs.skipped == 'false' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
tag_name: ${{ steps.changelog.outputs.tag }} | |
release_name: ${{ steps.changelog.outputs.tag }} | |
body: ${{ steps.changelog.outputs.clean_changelog }} | |