-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow
-
as delimiter in dep strings (#30)
* Add workflow to test prebuilt files * sudo * allow - in dep strings
- Loading branch information
1 parent
69a6cf2
commit aef20d7
Showing
4 changed files
with
84 additions
and
23 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Upload Prebuilt Zip | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
|
||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: create test zip | ||
run: | | ||
sudo apt install zip | ||
echo "{ \"namespace\": \"GreenTF\", \"name\": \"test\", \"description\": \"Test\", \"version_number\": \"1.${{ github.run_number }}.0\", \"dependencies\": [], \"website_url\": \"https://greenboi.me\" }" >> manifest.json | ||
zip test.zip ./* | ||
- id: pub | ||
uses: ./ | ||
with: | ||
namespace: GreenTF | ||
name: Test | ||
dev: true | ||
token: ${{ secrets.TS_KEY }} | ||
description: | | ||
The FitnessGram Pacer test is a multistage aerobic capacity test that progressively gets more difficult as it continues. | ||
The 20 meter Pacer test will begin in 30 seconds. | ||
Line up at the start. The running speed starts slowly, but gets faster each minute after you hear this signal *boop*. | ||
A single lap should be completed each time you hear this sound *ding*. Remember to run in a straight line, and run as long as possible. | ||
The second time you fail to complete a lap before the sound, your test is over. The test will begin on the word start. | ||
On your mark, get ready, start. | ||
version: v1.${{ github.run_number }}.0 | ||
community: riskofrain2 | ||
repo: thunderstore.dev | ||
wrap: mods | ||
website: "https://greenboi.me" | ||
categories: | | ||
mods | ||
maps | ||
tools | ||
items | ||
deps: | | ||
GreenTF-Test-0.130.0 | ||
file: ./test.zip | ||
- run: echo ${{ steps.pub.outputs.url }} | ||
|
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
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