Skip to content

Commit

Permalink
Update workflow, temp fix stripped dll download
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-r-elp committed Sep 7, 2024
1 parent 3d0ef52 commit 571484d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 8.0.x
# - name: Fetch SIRA References
# uses: ProjectSIRA/download-sira-stripped@1.0.0
# with:
# manifest: ./MultiplayerCore/manifest.json
# sira-server-code: ${{ secrets.SIRA_SERVER_CODE }}
- name: Initialize modding environment
uses: beat-forge/init-beatsaber@v1.6.3
uses: beat-forge/init-beatsaber@v1
with:
token: ${{ github.token }}
repo: michael-r-elp/beatsaber-stripped
manifest: ./MultiplayerCore/manifest.json
- name: Fetch Mod References
uses: Goobwabber/download-beatmods-deps@1.1
uses: Goobwabber/download-beatmods-deps@1.2
with:
manifest: ./MultiplayerCore/manifest.json
- name: Build
Expand All @@ -45,7 +45,7 @@ jobs:
BUILDTEXT: Filename=${{ steps.Build.outputs.filename }}
ASSEMBLYNAME: AssemblyName=${{ steps.Build.outputs.assemblyname }}
- name: Upload Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ${{ steps.Build.outputs.filename }}
path: ${{ steps.Build.outputs.artifactpath }}
20 changes: 13 additions & 7 deletions .github/workflows/PR_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,24 @@ jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Fetch SIRA References
uses: ProjectSIRA/download-sira-stripped@1.0.0
dotnet-version: 8.0.x
# - name: Fetch SIRA References
# uses: ProjectSIRA/download-sira-stripped@1.0.0
# with:
# manifest: ./MultiplayerCore/manifest.json
# sira-server-code: ${{ secrets.SIRA_SERVER_CODE }}
- name: Initialize modding environment
uses: beat-forge/init-beatsaber@v1
with:
token: ${{ github.token }}
repo: michael-r-elp/beatsaber-stripped
manifest: ./MultiplayerCore/manifest.json
sira-server-code: ${{ secrets.SIRA_SERVER_CODE }}
- name: Fetch Mod References
uses: Goobwabber/download-beatmods-deps@1.1
uses: Goobwabber/download-beatmods-deps@1.2
with:
manifest: ./MultiplayerCore/manifest.json
- name: Build
Expand All @@ -39,7 +45,7 @@ jobs:
BUILDTEXT: Filename=${{ steps.Build.outputs.filename }}
ASSEMBLYNAME: AssemblyName=${{ steps.Build.outputs.assemblyname }}
- name: Upload Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ${{ steps.Build.outputs.filename }}
path: ${{ steps.Build.outputs.artifactpath }}

0 comments on commit 571484d

Please sign in to comment.