-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* setup versioned releases * create version file
- Loading branch information
1 parent
80f292c
commit 46a53f6
Showing
2 changed files
with
58 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,29 +31,77 @@ jobs: | |
mkdir dist | ||
mv *.AppImage* dist/ | ||
- name: Check version file | ||
run: | | ||
cat ~/version | ||
echo "APP_VERSION=$(cat ~/version)" >> "${GITHUB_ENV}" | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
name: mpv-x86_64.AppImage | ||
name: AppImage | ||
path: 'dist' | ||
|
||
- name: Upload version file | ||
uses: actions/[email protected] | ||
with: | ||
name: version | ||
path: ~/version | ||
|
||
release: | ||
needs: [build] | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/download-artifact@v4 | ||
- uses: actions/[email protected] | ||
with: | ||
name: AppImage | ||
- uses: actions/[email protected] | ||
with: | ||
name: version | ||
|
||
- name: Read version | ||
run: | | ||
cat version | ||
export VERSION="$(<version)" | ||
echo "APP_VERSION=${VERSION}" >> "${GITHUB_ENV}" | ||
#Version Release | ||
- name: Del Previous Release | ||
run: | | ||
gh release delete "${APP_VERSION}" --repo "${GITHUB_REPOSITORY}" --cleanup-tag -y | ||
env: | ||
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
continue-on-error: true | ||
- name: Continuous Releaser | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: mpv-x86_64.AppImage | ||
name: "mpv AppImage ${{ env.APP_VERSION }}" | ||
tag_name: "${{ env.APP_VERSION}}" | ||
prerelease: false | ||
draft: false | ||
generate_release_notes: false | ||
make_latest: true | ||
files: | | ||
*.AppImage* | ||
continue-on-error: false | ||
|
||
- name: release | ||
uses: marvinpinto/action-automatic-releases@latest | ||
#Snapshot Release | ||
- name: Get Date | ||
run: | | ||
SNAPSHOT_TAG="$(date --utc +'%Y%m%d-%H%M%S')" | ||
echo SNAPSHOT_TAG="${SNAPSHOT_TAG}" >> "${GITHUB_ENV}" | ||
continue-on-error: false | ||
- name: Snapshot Releaser | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
title: Continuous build | ||
automatic_release_tag: continuous | ||
name: "Snapshot ${{ env.APP_VERSION }}" | ||
tag_name: "${{ env.SNAPSHOT_TAG }}" | ||
prerelease: false | ||
draft: false | ||
generate_release_notes: false | ||
make_latest: false | ||
files: | | ||
*.AppImage* | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
continue-on-error: false |
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