We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c17c6 commit 7638dd2Copy full SHA for 7638dd2
1 file changed
.github/workflows/test.yml
@@ -1,5 +1,8 @@
1
name: Get Hytale Auth
2
-on: workflow_dispatch # Allows you to run it manually from the "Actions" tab
+on:
3
+ workflow_dispatch: # Allows you to run it manually from the "Actions" tab
4
+ push:
5
+ branches: [ dev/testing ]
6
jobs:
7
auth:
8
runs-on: ubuntu-latest
@@ -9,3 +12,5 @@ jobs:
9
12
wget https://downloader.hytale.com/hytale-downloader-linux-amd64 -O downloader
10
13
chmod +x downloader
11
14
./downloader # This will print the URL and Code to the logs
15
+ echo "URL: ${{ steps.downloader.outputs.url }}"
16
+ echo "Code: ${{ steps.downloader.outputs.code }}"
0 commit comments