fix: Update Docker build and push actions to build and push multi-arc… #170
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: Releases | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: conventional Changelog Action | |
id: changelog | |
uses: TriPSs/conventional-changelog-action@v5 | |
with: | |
github-token: ${{ secrets.PA_TOKEN }} | |
version-file: 'package.json, package-lock.json' | |
skip-ci: 'false' | |
create-summary: 'true' | |
- name: create release | |
if: steps.changelog.outputs.skipped == 'false' | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.PA_TOKEN }} | |
tag : ${{ steps.changelog.outputs.tag }} | |
name: ${{ steps.changelog.outputs.tag }} | |
body: ${{ steps.changelog.outputs.clean_changelog }} |