diff options
| author | Lex Neva <github.com@lexneva.name> | 2020-12-20 22:06:46 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-12-20 22:10:14 -0500 |
| commit | d90e58ac5723549fa7297ef1a4a8851df9f6441b (patch) | |
| tree | 6d23b3a3297c581ec32ec054310eb1b35287de0d /.github/workflows | |
| parent | c69b9b44d9d328b10bc9817c8c0a8756fcfffecc (diff) | |
replace add-path with GITHUB_PATH
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f91e5f55..16f12889 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,7 +58,7 @@ jobs: rm inkscape-0.92.3.tar.bz2 mv inkscape-0.92.3 inkscape - echo "::add-path::${{ env.pythonLocation }}\bin" + echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH - shell: bash run: | make dist @@ -81,7 +81,7 @@ jobs: with: python-version: '2.7.x' architecture: 'x86' - - uses: microsoft/setup-msbuild@v1.0.1 + - uses: microsoft/setup-msbuild@v1.0.2 - name: download dependencies shell: bash run: | @@ -99,7 +99,7 @@ jobs: rm inkscape-0.92.3.tar.bz2 mv inkscape-0.92.3 inkscape - echo "::add-path::${{ env.pythonLocation }}\bin" + echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH - name: fix geos shell: bash run: | @@ -145,7 +145,7 @@ jobs: export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig" # for msgfmt - echo "::add-path::/usr/local/opt/gettext/bin" + echo "/usr/local/opt/gettext/bin" >> $GITHUB_PATH echo "::set-env name=GI_TYPELIB_PATH::/usr/local/lib/girepository-1.0/" @@ -158,7 +158,7 @@ jobs: rm inkscape-0.92.3.tar.bz2 mv inkscape-0.92.3 inkscape - echo "::add-path::${{ env.pythonLocation }}/bin" + echo "${{ env.pythonLocation }}/bin" >> $GITHUB_PATH - shell: bash run: | make dist |
