Skip to content

Commit

Permalink
Underp this derp
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws committed Feb 29, 2024
1 parent 644d782 commit 9fa4750
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish-appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,22 +99,22 @@ jobs:
- name: Install libc++, set CC and CXX env vars
run: |
sudo apt-get install -yqq --no-install-recommends \
libc++-${CLANG-VERSION}-dev \
libc++abi-${CLANG-VERSION}-dev
echo "CC=clang-${CLANG-VERSION}" >> $GITHUB_ENV
echo "CXX=clang++-${CLANG-VERSION}" >> $GITHUB_ENV
libc++-${CLANG_VERSION}-dev \
libc++abi-${CLANG_VERSION}-dev
echo "CC=clang-${CLANG_VERSION}" >> $GITHUB_ENV
echo "CXX=clang++-${CLANG_VERSION}" >> $GITHUB_ENV
- name: Build AppImage
run: ./appimage/build.sh
- name: Upload AppImage artifact
uses: actions/upload-artifact@v4
with:
name: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage'
name: "conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage"
path: conky-x86_64.AppImage
if-no-files-found: error
- name: Upload AppImage checksum artifact
uses: actions/upload-artifact@v4
with:
name: 'conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256'
name: "conky-${{ matrix.os }}-${{ matrix.arch }}-${{ env.GIT_VERSION }}.AppImage.sha256"
path: conky-x86_64.AppImage.sha256
if-no-files-found: error
- name: Upload man page artifact
Expand Down

0 comments on commit 9fa4750

Please sign in to comment.