Compare commits

...

6 Commits

Author SHA1 Message Date
be8432c7dd
Tweaks and error handling
All checks were successful
/ Upload and download test (push) Successful in 24s
2024-06-15 11:57:26 +02:00
c084c40288
Good job there kodi
All checks were successful
/ Tests that the action works as expected (push) Successful in 25s
2024-06-15 11:55:41 +02:00
13b99645d3
Install diff in the test workflow
Some checks failed
/ Tests that the action works as expected (push) Failing after 24s
2024-06-15 11:52:44 +02:00
7805cb3e4c
Enable running the test workflow manually
Some checks failed
/ Tests that the action works as expected (push) Failing after 14s
2024-06-15 11:50:39 +02:00
4482ee6fdc
Exit early when a required argument is not received
Some checks failed
/ Tests that the action works as expected (push) Failing after 13s
2024-06-15 11:48:28 +02:00
1414306012
Add workflow to test action automatically
Some checks failed
/ Tests that the action works as expected (push) Failing after 13s
2024-06-15 11:47:19 +02:00
2 changed files with 40 additions and 1 deletions

31
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,31 @@
on:
push:
branches:
- main
workflow_dispatch:
jobs:
test-action:
runs-on: nix
name: Upload and download test
steps:
- name: Create sample file
run: echo "Hello, world!" > test.txt
- name: Upload to lgoad
id: upload
uses: https://git.colon-three.com/kodi/lgoad-upload-action@main
with:
file: test.txt
token: ${{ secrets.LGOAD_TOKEN }}
custom-machine-name: 'github-action-test-machine'
content-type: 'text/plain'
custom-name: 'test.txt'
use-salt: 'true'
- name: Print the URL
run: echo "The URL is ${{ steps.upload.outputs.url }}"
- name: Check that the file is correctly uploaded
run: |
curl -s -o test-uploaded.txt ${{ steps.upload.outputs.url }}
nix shell "nixpkgs#diffutils" -c diff test.txt test-uploaded.txt
rm test.txt

View File

@ -10,10 +10,12 @@ try {
const file = core.getInput('file')
if (!file) {
core.setFailed('"file" is required')
process.exit(1)
}
const token = core.getInput('token')
if (!token) {
core.setFailed('"token" is required')
process.exit(1)
}
const machine_name = core.getInput('custom-machine-name') || os.hostname()
@ -40,7 +42,13 @@ try {
'x-salt-name': use_salt ? 'true' : 'false',
'authorization': `Bearer ${token}`
}
}).then(response => { return response.text() })
}).then(response => {
if (!response.ok) {
console.log("Got response: ", response)
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.text()
})
.then(uri => {
console.log("Uploaded to: ", uri)
core.setOutput('uri', uri)