Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,17 @@ jobs:
retention-days: 90

- name: Run build-archiver
uses: UltimateHackingKeyboard/build-archiver@v0.0.5
if: github.repository == 'UltimateHackingKeyboard/firmware' && github.event.pull_request.head.repo.fork == false
uses: UltimateHackingKeyboard/build-archiver@v0.0.9
if: github.repository == 'UltimateHackingKeyboard/firmware' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)
with:
FILE_PATTERN: "firmware/scripts/uhk-firmware-*.tar.gz"
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
S3_ACCESS_KEY: ${{ secrets.UHK_BUILD_ARCHIVER_AWS_ACCESS_SECRET }}
S3_ACCESS_KEY_ID: ${{ secrets.UHK_BUILD_ARCHIVER_AWS_ACCESS_KEY }}
S3_ACCESS_KEY: ${{ secrets.UHK_BUILD_ARCHIVER_B2_ACCESS_SECRET }}
S3_ACCESS_KEY_ID: ${{ secrets.UHK_BUILD_ARCHIVER_B2_ACCESS_KEY }}
S3_BUCKET: "uhk-build-archives"
S3_ENDPOINT: https://s3.us-east-005.backblazeb2.com
S3_KEY_PREFIX: "firmware/"
S3_REGION: "eu-central-1"
S3_REGION: "us-east-005"

- name: Check whether tag is a version
id: version_check
Expand Down