Browse Source

Upgrade build workflow

pull/73/head
Anairkoen Schno 2 years ago
parent
commit
f6e80c44fe
Signed by: DaNike GPG Key ID: BEFB74D5F3FC4387
4 changed files with 21 additions and 4 deletions
  1. +8
    -1
      .github/workflows/build.yml
  2. +6
    -1
      .github/workflows/docs.yml
  3. +6
    -1
      .github/workflows/tag_docs.yml
  4. +1
    -1
      IPA.Loader/Loader/manifest.json

+ 8
- 1
.github/workflows/build.yml View File

@ -12,6 +12,8 @@ defaults:
run:
shell: pwsh
permissions: read-all
jobs:
build:
runs-on: windows-latest
@ -33,7 +35,12 @@ jobs:
uses: actions/setup-dotnet@v1
with:
# As usual, obtained from: https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json
dotnet-version: "3.1.409" # since we now use this
dotnet-version: "6.0.100" # since we now use this
- name: Log in to package source
shell: pwsh
run: |
dotnet nuget add source --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} `
--store-password-in-clear-text --name github "https://nuget.pkg.github.com/Atlas-Rhythm/index.json"
- name: Clear Nuget Cache
run: dotnet nuget locals all --clear
- name: Restore


+ 6
- 1
.github/workflows/docs.yml View File

@ -30,7 +30,12 @@ jobs:
uses: actions/setup-dotnet@v1
with:
# As usual, obtained from: https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json
dotnet-version: "3.1.409" # since we now use this
dotnet-version: "6.0.100" # since we now use this
- name: Log in to package source
shell: pwsh
run: |
dotnet nuget add source --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} `
--store-password-in-clear-text --name github "https://nuget.pkg.github.com/Atlas-Rhythm/index.json"
- name: Clear Nuget Cache
run: dotnet nuget locals all --clear
- name: Nuget Restore


+ 6
- 1
.github/workflows/tag_docs.yml View File

@ -29,7 +29,12 @@ jobs:
uses: actions/setup-dotnet@v1
with:
# As usual, obtained from: https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json
dotnet-version: "3.1.404" # since we now use this
dotnet-version: "6.0.100" # since we now use this
- name: Log in to package source
shell: pwsh
run: |
dotnet nuget add source --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} `
--store-password-in-clear-text --name github "https://nuget.pkg.github.com/Atlas-Rhythm/index.json"
- name: Clear Nuget Cache
run: dotnet nuget locals all --clear
- name: Nuget Restore


+ 1
- 1
IPA.Loader/Loader/manifest.json View File

@ -8,7 +8,7 @@
"gameVersion": "1.16.1",
"id": "BSIPA",
"name": "Beat Saber IPA",
"version": "4.2.1",
"version": "4.2.1-pre.1",
"icon": "IPA.icon_white.png",
"features": {
"IPA.DefineFeature": [


Loading…
Cancel
Save