Skip to content

Commit

Permalink
patch: give clear message after init; auto-reload when apt in use
Browse files Browse the repository at this point in the history
  • Loading branch information
rockavoldy committed Nov 9, 2023
1 parent e2202a5 commit 50ecf9c
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,23 +135,25 @@ jobs:
with:
name: publish-binaries
path: ${{ github.workspace }}/publish

- name: Manage Version
uses: actions/checkout@v3

- name: Conventional Changelog Action
- name: Get Commits since last Release
id: changelog
uses: TriPSs/conventional-changelog-action@v4.1.1
uses: simbo/changes-since-last-release-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
output-file: "false"
line-prefix: "* "
include-hashes: false

- name: Publish GitHub Release
if: needs.build.outputs.bump_tag != 'NULL'
uses: ncipollo/release-action@v1.13.0
uses: ncipollo/release-action@v1.12.0
with:
prerelease: env.PRERELEASE
artifacts: "${{ github.workspace }}/publish/*.zip"
tag: "${{ needs.build.outputs.bump_tag }}"
token: ${{ secrets.GITHUB_TOKEN }}
body: ${{ steps.changelog.outputs.clean_changelog }}
body: |
Changes since ${{ steps.changelog.outputs.last-tag }}:
${{ steps.changelog.outputs.log }}

0 comments on commit 50ecf9c

Please sign in to comment.