Skip to content

Commit

Permalink
Merge pull request #100 from FixeQyt/patch-1
Browse files Browse the repository at this point in the history
Fix with uploading .deb packages
  • Loading branch information
NotroDev committed Jul 26, 2024
2 parents 1d2b71f + 7755304 commit 27bd7a4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,15 @@ jobs:
run: |
cd /home/runner/work/SkEditor/SkEditor/
for arch in x64 arm64; do
dpkg-deb -Zgzip -b SkEditorFiles-$arch SkEditor#${{ github.run_number }}-$arch.deb
dpkg-deb -Zgzip -b SkEditorFiles-$arch SkEditor-b${{ github.run_number }}-$arch.deb
done
- name: 📤 | Upload artifacts
env:
TOKEN: ${{ secrets.APT_REPO_TOKEN }}
run: |
curl --header "Authorization: Bearer ${TOKEN}" --form "package=@SkEditor#${{ github.run_number }}-x64.deb" --form "distribution=all" https://fixeq.baltorepo.com/skeditor/skeditor/upload/
for arch in x64 arm64; do
curl --header "Authorization: Bearer ${TOKEN}" --form "package=@SkEditor-b${{ github.run_number }}-$arch.deb" --form "distribution=all" https://fixeq.baltorepo.com/skeditor/skeditor/upload/
done
build-linux:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 27bd7a4

Please sign in to comment.