Skip to content

Commit 95ef64d

Browse files
authored
Merge pull request #259 from Cpasjuste/dev
workflows: try to fix deprecated release token
2 parents 984bacc + 57062b6 commit 95ef64d

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

.github/workflows/3ds-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
mkdir cmake-build-pgen && cd cmake-build-pgen
3939
source /etc/profile.d/devkit-env.sh
4040
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pgen \
41-
-DOPTION_LIGHT=ON -DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug ..
41+
-DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Debug ..
4242
make -j $(getconf _NPROCESSORS_ONLN) pgen.3dsx
4343
4444
- name: Build pnes

.github/workflows/3ds-release.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
run: |
2929
mkdir cmake-build-pfbneo && cd cmake-build-pfbneo
3030
source /etc/profile.d/devkit-env.sh
31-
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON \
32-
-DOPTION_EMU=pfbneo -DOPTION_LIGHT=ON -DCMAKE_BUILD_TYPE=Release ..
31+
cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_EMU=pfbneo \
32+
-DOPTION_LIGHT=ON -DOPTION_MPV_PLAYER=OFF -DCMAKE_BUILD_TYPE=Release ..
3333
make pfbneo.deps
3434
make -j $(getconf _NPROCESSORS_ONLN) pfbneo.3dsx
3535
@@ -57,9 +57,10 @@ jobs:
5757
#cmake -G "Unix Makefiles" -DPLATFORM_3DS=ON -DOPTION_MPV_PLAYER=OFF -DOPTION_EMU=psnes -DCMAKE_BUILD_TYPE=Release ..
5858
#make -j $(getconf _NPROCESSORS_ONLN) psnes.3dsx
5959

60-
- name: Release
61-
uses: softprops/action-gh-release@v1
62-
if: startsWith(github.ref, 'refs/tags/')
63-
with:
64-
files: '*.3dsx'
65-
token: ${{ secrets.RELEASE_TOKEN }}
60+
# not ready at all...
61+
#- name: Release
62+
# uses: softprops/action-gh-release@v1
63+
# if: startsWith(github.ref, 'refs/tags/')
64+
# with:
65+
# files: '*.3dsx'
66+
# token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/linux-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ jobs:
6060
if: startsWith(github.ref, 'refs/tags/')
6161
with:
6262
files: '*-linux'
63-
token: ${{ secrets.RELEASE_TOKEN }}
63+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/ps4-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ jobs:
6565
if: startsWith(github.ref, 'refs/tags/')
6666
with:
6767
files: '*.pkg'
68-
token: ${{ secrets.RELEASE_TOKEN }}
68+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/switch-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
if: startsWith(github.ref, 'refs/tags/')
6363
with:
6464
files: '*.nro'
65-
token: ${{ secrets.RELEASE_TOKEN }}
65+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/vita-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ jobs:
7575
if: startsWith(github.ref, 'refs/tags/')
7676
with:
7777
files: '*.vpk'
78-
token: ${{ secrets.RELEASE_TOKEN }}
78+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/windows-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ jobs:
6363
if: startsWith(github.ref, 'refs/tags/')
6464
with:
6565
files: '*.zip'
66-
token: ${{ secrets.RELEASE_TOKEN }}
66+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)