diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-03-06 00:01:05 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-05 18:31:05 +0000 |
commit | 47aecbca538d1109b37853eb4912cfe80b7804df (patch) | |
tree | 88ac663027a767af7cd66cf7681019009ad07586 /.github | |
parent | 208e49e4d51891f2a3d16647ceb43eef9eebfce6 (diff) |
Follow-up fixes to snapshot deployment (#1768)
* scripts/deploy-snapshot: ensure GITHUB_WORKSPACE is set when script is run
* scripts/deploy-snapshot: prevent command output from breaking comparison
* scripts/deploy-snapshot: fix shellcheck nits
* gitignore: add outputs directory
* github: pass privileged token to deployment script
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index e8f41046..ecb4ea36 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -42,3 +42,5 @@ jobs: - name: Deploy snapshot run: scripts/deploy-snapshot.sh + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |