mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-13 15:33:47 +00:00
Merge pull request #98 from maticnetwork/jdkanani/linux-ci-env-fix
fix: remove deprecated Github actions set-env
This commit is contained in:
commit
830777fa79
1 changed files with 4 additions and 1 deletions
5
.github/workflows/linuxpackage.yml
vendored
5
.github/workflows/linuxpackage.yml
vendored
|
|
@ -21,12 +21,15 @@ jobs:
|
||||||
ruby-version: 2.6
|
ruby-version: 2.6
|
||||||
|
|
||||||
- name: Retrieve release version
|
- name: Retrieve release version
|
||||||
run: echo "::set-env name=RELEASE_VERSION::${GITHUB_REF/refs\/tags\/v/}"
|
run: |
|
||||||
|
echo "RELEASE_VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build package
|
- name: Build package
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
echo "Release version: ${{ env.RELEASE_VERSION }}"
|
||||||
|
|
||||||
sudo apt-get -yqq install libpq-dev build-essential
|
sudo apt-get -yqq install libpq-dev build-essential
|
||||||
gem install --no-document fpm
|
gem install --no-document fpm
|
||||||
fpm --version
|
fpm --version
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue