From 86745603be0cd1c9ba08ce7677ad7ccb42723c7b Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Mon, 6 Nov 2023 10:20:48 -0500 Subject: [PATCH] Another step closer to automated releases... --- .github/workflows/main.yaml | 24 +++++++++++++++--------- CHANGELOG.md | 8 ++++++++ 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b6348276..98228176 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 \ No newline at end of file + 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 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a1ef2c25..5ee05305 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.