mirror of
https://github.com/Gericom/FastVideoDSPlayer.git
synced 2025-06-18 18:45: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
|
name: Build with Docker using devkitARM
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Make application
|
- name: Make application
|
||||||
run: |
|
run: |
|
||||||
make
|
make
|
||||||
- name: Prepare for build publishing
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/artifacts
|
|
||||||
cp -f FastVideoDS.nds ~/artifacts/
|
|
||||||
- name: Publish build to GH Actions
|
- name: Publish build to GH Actions
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: ~/artifacts/*
|
path: FastVideoDS.nds
|
||||||
name: build
|
|
||||||
|
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
@ -11,19 +11,15 @@ jobs:
|
|||||||
name: Build with Docker using devkitARM
|
name: Build with Docker using devkitARM
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
- name: Make application
|
- name: Make application
|
||||||
run: |
|
run: |
|
||||||
make
|
make
|
||||||
- name: Prepare for build publishing
|
|
||||||
run: |
|
|
||||||
mkdir -p ~/artifacts
|
|
||||||
cp -f FastVideoDS.nds ~/artifacts/
|
|
||||||
- name: Publish build to GH Actions
|
- name: Publish build to GH Actions
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: ~/artifacts/*
|
path: FastVideoDS.nds
|
||||||
name: build
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
Loading…
Reference in New Issue
Block a user