Skip to content

Commit

Permalink
Win nightly: fix artefact links
Browse files Browse the repository at this point in the history
Github replaces ~ by . in artifacts URL, so current links are wrong.
  • Loading branch information
aurelienpierre committed Jan 9, 2025
1 parent 17ffeed commit cb67695
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/win-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,6 @@ jobs:
ROOM: "!SgRYbzspwqwwUgSQHC:matrix.org"
TAG: "v0.0.0"
steps:
- name: Checkout ansel source
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: false

- name: Download artifact
uses: actions/download-artifact@v3
with:
Expand All @@ -197,7 +191,7 @@ jobs:
- name: Notify Matrix
if: ${{ success() }}
run: |
FILENAME=$(find . -type f -iname "ansel-*.exe")
FILENAME=$(tr '~', '.' <<< "$(find . -type f -iname "ansel-*.exe")")
MESSAGE="New Exe [${FILENAME}](${{ env.REPO }}/releases/download/${{ env.TAG }}/${FILENAME}) built"
python .ci/matrix.py \
-m "$MESSAGE" \
Expand Down

0 comments on commit cb67695

Please sign in to comment.