Skip to content

Commit

Permalink
build(version): bump dar-to-oar from 0.8.0 to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Oct 21, 2024
1 parent 9850aad commit 3270e3c
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 334 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ body:
- 0.6.0
- 0.7.0
- 0.8.0
- 0.9.0
validations:
required: true
- type: textarea
Expand Down
293 changes: 0 additions & 293 deletions .github/workflows/release-cli.yaml

This file was deleted.

29 changes: 26 additions & 3 deletions .github/workflows/release-gui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4

- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-latest'
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature.
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -58,3 +58,26 @@ jobs:
releaseName: 'DAR to OAR Converter v__VERSION__'
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
prerelease: false

# ---- This part is not automatically generated. ----
- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}
- name: Create Github Release
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: 'DAR to OAR Converter v${{ github.ref_name }}'
body: |
${{ steps.changelog.outputs.changes }}
artifacts: 'artifacts/*'
allowUpdates: true
- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: main
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]'
file_pattern: CHANGELOG.md
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3270e3c

Please sign in to comment.