mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
parent
30f058dfea
commit
5e66045a21
2 changed files with 4 additions and 1 deletions
2
.github/actions/github-release/main.js
vendored
2
.github/actions/github-release/main.js
vendored
|
@ -16,7 +16,7 @@ async function runOnce() {
|
|||
const slug = process.env.GITHUB_REPOSITORY;
|
||||
const owner = slug.split('/')[0];
|
||||
const repo = slug.split('/')[1];
|
||||
const sha = process.env.GITHUB_SHA;
|
||||
const sha = process.env.HEAD_SHA;
|
||||
|
||||
core.info(`files: ${files}`);
|
||||
core.info(`name: ${name}`);
|
||||
|
|
3
.github/workflows/release.yaml
vendored
3
.github/workflows/release.yaml
vendored
|
@ -88,6 +88,9 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- run: echo "::set-env name=HEAD_SHA::$(git rev-parse HEAD)"
|
||||
- run: 'echo "HEAD_SHA: $HEAD_SHA"'
|
||||
|
||||
- uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: dist-macos-latest
|
||||
|
|
Loading…
Reference in a new issue