-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update description, setup versioned releases (#11)
* update description * disable old workflow * mmmmm * create version file * setup versioned releases * prevent `:` from making it into the filename
- Loading branch information
1 parent
2cbb9da
commit c24a3f7
Showing
4 changed files
with
87 additions
and
19 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 |
---|---|---|
|
@@ -58,13 +58,80 @@ jobs: | |
run: | | ||
chmod +x ./dolphin-emu-appimage.sh | ||
./dolphin-emu-appimage.sh | ||
mkdir dist | ||
mv *.AppImage* dist/ | ||
- name: release | ||
uses: "marvinpinto/action-automatic-releases@6273874b61ebc8c71f1a61b2d98e234cf389b303" | ||
- name: Check version file | ||
run: | | ||
cat ~/version | ||
echo "APP_VERSION=$(cat ~/version)" >> "${GITHUB_ENV}" | ||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: AppImage | ||
path: 'dist' | ||
|
||
- name: Upload version file | ||
uses: actions/[email protected] | ||
with: | ||
title: Continuous Sharun | ||
automatic_release_tag: continuous-Sharun-Artixlinux | ||
prerelease: true | ||
draft: false | ||
files: /home/runner/work/Dolphin_emu_Appimage/Dolphin_emu_Appimage/*.AppImage* | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
name: version | ||
path: ~/version | ||
|
||
release: | ||
needs: [build] | ||
permissions: write-all | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- 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: "Dolphin Emulator 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 | ||
|
||
#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: | ||
name: "Snapshot ${{ env.APP_VERSION }}" | ||
tag_name: "${{ env.SNAPSHOT_TAG }}" | ||
prerelease: false | ||
draft: false | ||
generate_release_notes: false | ||
make_latest: false | ||
files: | | ||
*.AppImage* | ||
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
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,14 +1,15 @@ | ||
# Dolphin_emu_Appimage | ||
<br> description:<br/> | ||
# Dolphin-emu-AppImage | ||
|
||
Unofficial AppImage of the Dolphin Emulator. | ||
<br> Dolphin emu is a Nintendo Game Cube and Wii emulator, it allows the computer gammers enjoy both Consoles in the computer with the capability of 1080p <br/> | ||
<br>The application works fine, just download it and form your terminal run `chmod a+x Dolphin_Emulator-x86_64.AppImage` then `./Dolphin_Emulator-x86_64.AppImage` or just double click upon it.<br/> | ||
|
||
**This AppImage bundles everything and should work on any linux distro, even on musl based ones.** <br>Please if you find a bug open an issue<br/> | ||
|
||
######################################################################## | ||
<br> Thank you for sharing this project across the internet! <br/> | ||
<br> If you like it don't forget to give an star. <br/> | ||
<br> By the way this is an unofficial project. <br/> | ||
<br> If you like it don't forget to give a star. <br/> | ||
######################################################################## | ||
<br>The application works fine. just download it and form your terminal run this command `chmod a+x Dolphin_Emulator-x86_64.AppImage`<br/> | ||
then | ||
<br>./Dolphin_Emulator-x86_64.AppImage or just double click upon it.<br/> | ||
<br>Please if you find a bug open an issue<br/> | ||
|
||
<h1>Telegram Group<h1/> | ||
<h1>https://t.me/appimagelucasmz1<h1/> |
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