mirror of
https://github.com/Gericom/FastVideoDSPlayer.git
synced 2025-06-18 10:35:34 -04:00
workflow: clean up
- Bump actions versions - Don't make a new directory for artifact uploads, as the file name is unlikely to change
This commit is contained in:
parent
981575da67
commit
368223df72
11
.github/workflows/nightly.yml
vendored
11
.github/workflows/nightly.yml
vendored
@ -18,16 +18,11 @@ jobs:
|
||||
name: Build with Docker using devkitARM
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Make application
|
||||
run: |
|
||||
make
|
||||
- name: Prepare for build publishing
|
||||
run: |
|
||||
mkdir -p ~/artifacts
|
||||
cp -f FastVideoDS.nds ~/artifacts/
|
||||
- name: Publish build to GH Actions
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: ~/artifacts/*
|
||||
name: build
|
||||
path: FastVideoDS.nds
|
||||
|
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
@ -11,19 +11,15 @@ jobs:
|
||||
name: Build with Docker using devkitARM
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Make application
|
||||
run: |
|
||||
make
|
||||
- name: Prepare for build publishing
|
||||
run: |
|
||||
mkdir -p ~/artifacts
|
||||
cp -f FastVideoDS.nds ~/artifacts/
|
||||
- name: Publish build to GH Actions
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: ~/artifacts/*
|
||||
name: build
|
||||
path: FastVideoDS.nds
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
|
Loading…
Reference in New Issue
Block a user