Skip to content

Commit

Permalink
[CI] Use existing repo variables instead (qmk#23676)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored May 7, 2024
1 parent 0273730 commit a58906c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci_build_major_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
secrets: inherit

rollup_tasks:
name: "Housekeeping"
name: "Consolidation"
needs: build_targets
runs-on: ubuntu-latest

Expand All @@ -89,11 +89,11 @@ jobs:
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: qmk-ci
AWS_S3_BUCKET: ${{ vars.CI_QMK_FM_SPACES_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.CI_QMK_FM_SPACES_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_QMK_FM_SPACES_SECRET }}
AWS_REGION: nyc3
AWS_S3_ENDPOINT: nyc3.digitaloceanspaces.com
AWS_REGION: ${{ vars.CI_QMK_FM_SPACES_REGION }}
AWS_S3_ENDPOINT: ${{ vars.CI_QMK_FM_SPACES_ENDPOINT }}
SOURCE_DIR: firmwares
DEST_DIR: ${{ inputs.branch || github.ref_name }}/${{ github.sha }}

Expand All @@ -102,11 +102,11 @@ jobs:
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: qmk-ci
AWS_S3_BUCKET: ${{ vars.CI_QMK_FM_SPACES_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.CI_QMK_FM_SPACES_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_QMK_FM_SPACES_SECRET }}
AWS_REGION: nyc3
AWS_S3_ENDPOINT: nyc3.digitaloceanspaces.com
AWS_REGION: ${{ vars.CI_QMK_FM_SPACES_REGION }}
AWS_S3_ENDPOINT: ${{ vars.CI_QMK_FM_SPACES_ENDPOINT }}
SOURCE_DIR: firmwares
DEST_DIR: ${{ inputs.branch || github.ref_name }}/latest

Expand Down

0 comments on commit a58906c

Please sign in to comment.