Skip to content

Commit

Permalink
github cannot live reload env after modification
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Feb 17, 2024
1 parent bb20b94 commit dcce677
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
- name: 'Configure Wine'
working-directory: wine
run: |
echo "WINE_ARCHIVE=${{ github.workspace }}/wine-vinegarhq-build-${{ env.WINE_VERSION }}.tar.xz" >> $GITHUB_ENV
./configure \
CC='ccache gcc' \
x86_64_CC='ccache x86_64-w64-mingw32-gcc' \
Expand Down Expand Up @@ -102,21 +103,20 @@ jobs:
--with-krb5 \
--with-usb \
--with-v4l2
- name: 'Build Wine'
working-directory: wine
run: make -j$(($(nproc) + 1))
- name: 'Install Wine'
working-directory: wine
run: make install LDCONFIG=/bin/true UPDATE_DESKTOP_DATABASE=/bin/true

- name: 'Strip Wine'
working-directory: ${{ env.WINE_PREFIX }}
run: |
x86_64-w64-mingw32-strip --strip-unneeded lib/wine/x86_64-windows/*.dll
- name: Make artifacts
run: |
echo "WINE_ARCHIVE=${{ github.workspace }}/wine-vinegarhq-build-${{ env.WINE_VERSION }}.tar.xz" >> $GITHUB_ENV
XZ_OPT=-9 tar -Jcf ${{ env.WINE_ARCHIVE }} ${{ env.WINE_PREFIX }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit dcce677

Please sign in to comment.