Skip to content

Commit

Permalink
First crack at release automation
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Nov 2, 2023
1 parent 0bf53b9 commit 31852aa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build Artifacts

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches:
- main
pull_request:
Expand Down Expand Up @@ -108,4 +110,16 @@ jobs:
ARM9_DSI_BIOS: ${{ secrets.ARM9_DSI_BIOS }}
NDS_FIRMWARE: ${{ secrets.NDS_FIRMWARE }}
DSI_FIRMWARE: ${{ secrets.DSI_FIRMWARE }}
NDS_ROM: ${{ secrets.NDS_ROM }}
NDS_ROM: ${{ secrets.NDS_ROM }}

release:
name: Release Build
needs: [ windows, macos, linux-x86_64, linux-aarch64, android, ios, tvos, test-linux-x86_64 ]
runs-on: ubuntu-latest
steps:
- name: Check Out Source
uses: actions/checkout@v3
- name: Create Release
uses: dropseed/changerelease@v1.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion melondsds_libretro.info
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Software Information
display_name = "Nintendo - DS (melonDS DS)"
display_version = "0.7.0"
display_version = "0.7.1"
authors = "Jesse Talavera-Greenberg|The melonDS Team"
categories = "Emulator"
corename = "melonDS DS"
Expand Down

0 comments on commit 31852aa

Please sign in to comment.