-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support downloading of previous workflow's artefacts
Support download inputs such as host_x86_64_linux=242234434 to download from a previous run's artefacts. This allows us to try different parts of the pipeline known to fail.
- Loading branch information
Showing
7 changed files
with
143 additions
and
25 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
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,22 @@ | ||
name: setup gh | ||
description: Set up github's cli gh | ||
|
||
inputs: | ||
os: | ||
description: 'os to use (contains windows or ubuntu)' | ||
default: 'ubuntu' | ||
token: | ||
description: 'token for gh' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: set up secret ubuntu | ||
shell: bash | ||
run: | ||
echo "GH_TOKEN=${{ inputs.token }}" >> $GITHUB_ENV | ||
- name: install gh | ||
if: contains(inputs.os, 'ubuntu') | ||
shell: bash | ||
run: | ||
sudo apt-get install --yes gh |
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 @@ | ||
API,api/test_api |
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
Oops, something went wrong.