mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
CI: fix deprecated commands
See https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
This commit is contained in:
parent
9468598740
commit
f564913a5c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Get Git tag
|
- name: Get Git tag
|
||||||
run: echo ::set-env name=VERSION::${GITHUB_REF#refs/tags/v}
|
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Create distribution source tarball
|
- name: Create distribution source tarball
|
||||||
run: |
|
run: |
|
||||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Add MSBuild to PATH
|
- name: Add MSBuild to PATH
|
||||||
uses: microsoft/setup-msbuild@v1.0.0
|
uses: microsoft/setup-msbuild@master
|
||||||
|
|
||||||
- name: Build with MSBuild
|
- name: Build with MSBuild
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue