Skip to content

Commit

Permalink
Update build workflow for Node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Kewlan committed Apr 24, 2024
1 parent 01793f2 commit 0b19ec2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Get Last Nightly
Expand All @@ -29,7 +29,7 @@ jobs:
echo "last_nightly=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_ENV
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.0.1
uses: metcalfc/changelog-generator@v4.3.1
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
base-ref: ${{ env.last_nightly }}
Expand All @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

- name: Run Build Script
run: |
Expand All @@ -59,7 +59,7 @@ jobs:

- if: ${{ github.event.inputs.build_type == 'Nightly' }}
name: Create Pre-release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
token: "${{ secrets.GITHUB_TOKEN }}"
artifacts: "OoT3D_Randomizer.cia,OoT3D_Randomizer.3dsx,cia.png,3dsx.png"
Expand All @@ -82,7 +82,7 @@ jobs:
- if: ${{ github.event.inputs.build_type == 'Release' }}
name: Create Release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
token: "${{ secrets.GITHUB_TOKEN }}"
artifacts: "OoT3D_Randomizer.cia,OoT3D_Randomizer.3dsx,cia.png,3dsx.png"
Expand Down

0 comments on commit 0b19ec2

Please sign in to comment.