Skip to content

test - lets try this again #1

test - lets try this again

test - lets try this again #1

Workflow file for this run

name: Get Hytale Auth
on:
workflow_dispatch: # Allows you to run it manually from the "Actions" tab
push:
branches: [ dev/testing ]
jobs:
auth:
runs-on: ubuntu-latest
steps:
- name: Run Downloader
run: |
wget https://downloader.hytale.com/hytale-downloader-linux-amd64 -O downloader
chmod +x downloader
./downloader # This will print the URL and Code to the logs
echo "URL: ${{ steps.downloader.outputs.url }}"
echo "Code: ${{ steps.downloader.outputs.code }}"