Skip to content

Commit

Permalink
fix urls not populating in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Stexinator committed Sep 23, 2024
1 parent 4decc9a commit 3f48c6f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ jobs:
id: get-includes
run: echo "::set-output name=files::$(node ./.github/workflows/get-includes.js)"

# create a zip file with all files required by the module to add to the release
- name: Zip Files
working-directory: ./src #SORRY BUT YOU HAVE TO USE src JUST LIKE GET OVER IT OR FIGURE OUT A BETTER WAY
run: zip -r ../module.zip ${{steps.get-includes.outputs.files}}

#Useful only for the template so we can leave the manifest and download urls empty
- name: Substitute Manifest and Download Links For Versioned Ones
id: sub_manifest_link_latest
Expand All @@ -39,6 +34,11 @@ jobs:
manifest: https://github.com/${{github.repository}}/releases/latest/download/module.json
download: https://github.com/${{github.repository}}/releases/latest/download/module.zip

# create a zip file with all files required by the module to add to the release
- name: Zip Files
working-directory: ./src #SORRY BUT YOU HAVE TO USE src JUST LIKE GET OVER IT OR FIGURE OUT A BETTER WAY
run: zip -r ../module.zip ${{steps.get-includes.outputs.files}}

# Update the 'latest' release
- name: Update Latest Release
id: create_latest_release
Expand Down
4 changes: 2 additions & 2 deletions src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"flags": {}
}
],
"version": "0.0.23",
"version": "0.0.24",
"compatibility": {
"minimum": "11",
"verified": "12"
},
"title": "Salvage Union Combat Automation Module",
"description": "A Salvage Union module to help with some combat automation",
"download": "https://github.com/Stexinator/salvage-union-combat-automation/releases/download/0.0.22/module.zip",
"download": "https://github.com/Stexinator/salvage-union-combat-automation/releases/download/0.0.23/module.zip",
"esmodules": [
"scripts/hooks.js"
],
Expand Down

0 comments on commit 3f48c6f

Please sign in to comment.