From e6e29b4a23ac173eaf7794c184155fb5d0772eb5 Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Mon, 6 Nov 2023 11:00:27 -0500 Subject: [PATCH] Simplify the release slightly --- .github/workflows/main.yaml | 5 ++--- CHANGELOG.md | 9 +++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7dc021d5..9ec5305a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -4,8 +4,6 @@ on: push: branches: - main - tags: - - "v[0-9]+.[0-9]+.[0-9]" pull_request: branches: - main @@ -140,8 +138,9 @@ jobs: - name: Zip Release Artifacts if: "${{ steps.changelog.outputs.version != steps.newest-tag.outputs.version }}" shell: bash + working-directory: artifact run: | - for file in artifact/melondsds_libretro-*-Release; do + for file in melondsds_libretro-*-Release; do zip -r "${file}.zip" "$file" done - run: ls -halR diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d3d390..1012c507 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,15 @@ and this project roughly adheres to [Semantic Versioning](https://semver.org/spe Nothing right now. +## [0.7.10] - 2023-11-06 + +I'm still working out a workflow for releases, +but that process is almost done. + +### Fixed + +- Simplify the hierarchy of the artifacts in the release. + ## [0.7.9] - 2023-11-06 This is an overview of this release's changes.