mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-05 16:13:14 +02:00
chore: update github actions (#46)
* update to `checkout@v4` * `upload-artifact` to v4
This commit is contained in:
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@@ -4,11 +4,11 @@ on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
ignore:
|
||||
description: 'ignore'
|
||||
required: false
|
||||
default: 'ignore'
|
||||
description: "ignore"
|
||||
required: false
|
||||
default: "ignore"
|
||||
push:
|
||||
branches:
|
||||
branches:
|
||||
- slippi
|
||||
- ci
|
||||
pull_request:
|
||||
@@ -17,16 +17,16 @@ on:
|
||||
branches:
|
||||
- "**"
|
||||
|
||||
jobs:
|
||||
jobs:
|
||||
ubuntu64:
|
||||
name: "Loader Build"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: 'Fetch Git Tags'
|
||||
- name: "Fetch Git Tags"
|
||||
shell: bash
|
||||
if: success()
|
||||
run: |
|
||||
@@ -59,13 +59,13 @@ jobs:
|
||||
cp -r ./ci/* ./release-artifact/apps/
|
||||
- name: "Publish Loader"
|
||||
if: success()
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: loader-${{ env.CURR_DATE }}-${{ env.GIT_HASH }}-${{ env.GIT_TAG }}
|
||||
path: "./artifact/"
|
||||
- name: "Publish Release Ready Loader"
|
||||
if: success()
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release-${{ env.CURR_DATE }}-${{ env.GIT_HASH }}-${{ env.GIT_TAG }}
|
||||
path: "./release-artifact/"
|
||||
|
Reference in New Issue
Block a user