Skip to content

Commit

Permalink
Another step closer to automated releases...
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Nov 6, 2023
1 parent fe6c227 commit 8674560
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,24 +145,30 @@ jobs:
uses: actions/download-artifact@v3
with:
path: artifact
- run: ls -halR
- name: Zip Release Artifacts
if: "${{ steps.changelog.outputs.version != steps.newest-tag.outputs.version }}"
shell: bash
run: |
for file in artifact/*; do
for file in artifact/melondsds_libretro-*-Release; do
zip -r "${file}.zip" "$file"
done
- run: ls -halR
- name: Upload .info File Artifact
if: "${{ steps.changelog.outputs.version != steps.newest-tag.outputs.version }}"
uses: actions/upload-artifact@v3
with:
name: melondsds_libretro.info
path: artifact/melondsds_libretro-linux-x86_64-Release/cores/melondsds_libretro.info
- name: Create Release
if: "${{ steps.changelog.outputs.version != steps.newest-tag.outputs.version }}"
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.RELEASE_TOKEN }}
files: |
artifact/melondsds_libretro-win32-x86_64.zip
artifact/melondsds_libretro-macos-universal.zip
artifact/melondsds_libretro-linux-x86_64.zip
artifact/melondsds_libretro-linux-aarch64.zip
artifact/melondsds_libretro-android.zip
artifact/melondsds_libretro-ios.zip
artifact/melondsds_libretro-tvos.zip
artifact/melondsds_libretro-win32-x86_64-Release.zip
artifact/melondsds_libretro-macos-universal-Release.zip
artifact/melondsds_libretro-linux-x86_64-Release.zip
artifact/melondsds_libretro-linux-aarch64-Release.zip
artifact/melondsds_libretro-android-Release.zip
artifact/melondsds_libretro-ios-Release.zip
artifact/melondsds_libretro-tvos-Release.zip
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ and this project roughly adheres to [Semantic Versioning](https://semver.org/spe

Nothing right now.

## [0.7.8] - 2023-11-06

This is an overview of this release's changes.

### Fixed

- Still another test release.

## [0.7.7] - 2023-11-06

This is an overview of this release's changes.
Expand Down

0 comments on commit 8674560

Please sign in to comment.