-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor release workflow to support beta versions and update install…
…ation instructions
- Loading branch information
maizied.majumder
committed
Oct 24, 2024
1 parent
6ee5a7f
commit bfdcf5c
Showing
2 changed files
with
31 additions
and
29 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
name: Automation to Make Releases | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
tags: | ||
- 'v*.*.*-beta' | ||
workflow_run: | ||
workflows: ["Linpad application"] # Name of the first workflow | ||
types: | ||
- completed | ||
|
||
jobs: | ||
create_release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
create_release: | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} # Only run if the previous workflow succeeded | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Download .deb package | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: linpad-deb-package | ||
- name: Download .deb package | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: linpad-deb-package | ||
|
||
- name: Get current version | ||
id: get_version | ||
run: | | ||
TAG=$(git describe --tags --abbrev=0) | ||
VERSION=${TAG//v/} | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Get current version | ||
id: get_version | ||
run: | | ||
TAG=$(git describe --tags --abbrev=0) | ||
VERSION=${TAG//v/} | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ env.VERSION }} | ||
name: ${{ env.VERSION }} | ||
body: "Release of Linpad application version ${{ env.VERSION }}" | ||
files: linpad.deb # Adjusted the path to the downloaded artifact | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ env.VERSION }} | ||
name: ${{ env.VERSION }} | ||
body: "Release of Linpad application version ${{ env.VERSION }}" | ||
files: linpad.deb # Adjusted the path to the downloaded artifact | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the default token for release |