mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Convert remaining uses of set-output for Github Actions (#11352)
This commit is contained in:
parent
a703544830
commit
3496011e35
2 changed files with 5 additions and 5 deletions
8
.github/workflows/fleet-and-orbit.yml
vendored
8
.github/workflows/fleet-and-orbit.yml
vendored
|
|
@ -46,11 +46,11 @@ jobs:
|
|||
- id: gen
|
||||
run: |
|
||||
UUID=$(uuidgen)
|
||||
echo "::set-output name=subdomain::fleet-test-$UUID"
|
||||
echo "::set-output name=domain::fleet-test-$UUID.fleetuem.com"
|
||||
echo "::set-output name=address::https://fleet-test-$UUID.fleetuem.com"
|
||||
echo "subdomain=fleet-test-$UUID" >> $GITHUB_OUTPUT
|
||||
echo "domain=fleet-test-$UUID.fleetuem.com" >> $GITHUB_OUTPUT
|
||||
echo "address=https://fleet-test-$UUID.fleetuem.com" >> $GITHUB_OUTPUT
|
||||
ENROLL=$(uuidgen)
|
||||
echo "::set-output name=enroll_secret::$ENROLL"
|
||||
echo "enroll_secret=$ENROLL" >> $GITHUB_OUTPUT
|
||||
|
||||
run-server:
|
||||
timeout-minutes: 60
|
||||
|
|
|
|||
2
.github/workflows/integration.yml
vendored
2
.github/workflows/integration.yml
vendored
|
|
@ -143,7 +143,7 @@ jobs:
|
|||
sleep 5
|
||||
done
|
||||
TOKEN=$(cat ~/.fleet/config| grep token | awk '{ print $2 }')
|
||||
echo "::set-output name=token::$TOKEN"
|
||||
echo "token=$TOKEN" >> $GITHUB_OUTPUT
|
||||
|
||||
orbit-macos:
|
||||
timeout-minutes: 15
|
||||
|
|
|
|||
Loading…
Reference in a new issue