Skip to content

Commit

Permalink
Remove set-env from ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
OneMoreGres committed Jan 24, 2021
1 parent abdf15a commit a76ee0f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt-get install libgl1-mesa-dev libxkbcommon-x11-0 libxcb-*
echo ::set-env name=QMAKE_FLAGS::QMAKE_CXX=g++-9 QMAKE_CC=gcc-9
echo "QMAKE_FLAGS=QMAKE_CXX=g++-9 QMAKE_CC=gcc-9" >> $GITHUB_ENV
- name: Cache dependencies
uses: actions/cache@v1
Expand Down Expand Up @@ -98,21 +98,21 @@ jobs:
shell: bash
run: |
python ./share/ci/appimage.py
echo ::set-env name=artifact::`python ./share/ci/appimage.py artifact_name`
echo "artifact=`python ./share/ci/appimage.py artifact_name`" >> $GITHUB_ENV
- name: Create win deploy
if: runner.os == 'Windows'
shell: bash
run: |
python ./share/ci/windeploy.py
echo ::set-env name=artifact::`python ./share/ci/windeploy.py artifact_name`
echo "artifact=`python ./share/ci/windeploy.py artifact_name`" >> $GITHUB_ENV
- name: Create mac deploy
if: runner.os == 'macOS'
shell: bash
run: |
python ./share/ci/macdeploy.py
echo ::set-env name=artifact::`python ./share/ci/macdeploy.py artifact_name`
echo "artifact=`python ./share/ci/macdeploy.py artifact_name`" >> $GITHUB_ENV
- name: Upload build artifact
if: env.artifact != ''
Expand All @@ -131,7 +131,7 @@ jobs:
- name: Set release env
if: contains(github.ref, '/tags/')
shell: bash
run: echo ::set-env name=upload_url::`cat ./release_upload_url`
run: echo "upload_url=`cat ./release_upload_url`" >> $GITHUB_ENV

- name: Upload release artifacts
if: contains(github.ref, '/tags/')
Expand Down

0 comments on commit a76ee0f

Please sign in to comment.