-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fcf339
commit 8566c78
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,12 +76,18 @@ jobs: | |
- name: Package FicsItNetworks Mod | ||
run: ${{ github.workspace }}\ue\Engine\Build\BatchFiles\RunUAT.bat -ScriptsForProject='${{ github.workspace }}\SatisfactoryModLoader\FactoryGame.uproject' PackagePlugin -project='${{ github.workspace }}\SatisfactoryModLoader\FactoryGame.uproject' -DLCName='FicsItNetworks' -build -server -clientconfig=Shipping -serverconfig=Shipping -platform=Win64 -serverplatform=Win64+Linux -nocompileeditor -installed -merge -utf8output | ||
|
||
- name: Upload FicsItNetworks-Merged | ||
id: upload-win64 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: FicsItNetworks-Merged | ||
path: ${{github.workspace}}\SatisfactoryModLoader\Saved\ArchivedPlugins\FicsItNetworks\FicsItNetworks.zip | ||
- name: Upload FicsItNetworks | ||
id: upload-win64 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: FicsItNetworks | ||
path: ${{github.workspace}}\SatisfactoryModLoader\Saved\ArchivedPlugins\FicsItNetworks\*.zip | ||
path: ${{github.workspace}}\SatisfactoryModLoader\Saved\ArchivedPlugins\FicsItNetworks\FicsItNetworks-*.zip | ||
|
||
- name: Discord Webhook Action | ||
uses: Panakotta00/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,18 @@ jobs: | |
name: "FicsItNetworks" | ||
}); | ||
return response.data.artifacts[0].workflow_run.id; | ||
- name: Find FicsIt-Networks-Merged Binary | ||
uses: actions/github-script@v7 | ||
id: find-ficsit-networks-merged | ||
with: | ||
script: | | ||
const response = await github.rest.actions.listArtifactsForRepo({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
per_page: 1, | ||
name: "FicsItNetworks-Merged" | ||
}); | ||
return response.data.artifacts[0].workflow_run.id; | ||
- name: Download FicsIt-Networks | ||
uses: actions/download-artifact@v4 | ||
|
@@ -50,6 +62,13 @@ jobs: | |
run-id: ${{ steps.find-ficsit-networks.outputs.result }} | ||
path: ${{ github.workspace }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Download FicsIt-Networks | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: FicsItNetworks-Merged | ||
run-id: ${{ steps.find-ficsit-networks-merged.outputs.result }} | ||
path: ${{ github.workspace }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload To Github Release | ||
uses: xresloader/[email protected] | ||
|