Skip to content

Commit

Permalink
fix: just wget the mc binary (i'm a little dumb)
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Jun 3, 2024
1 parent 0fb5f3c commit 91acd8c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-katsu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,13 @@ env:
podman
buildah
katsu
https://dl.min.io/client/mc/release/linux-arm64/mcli-20240524090849.0.0-1.aarch64.rpm
on:
push:
branches: [ "um40" ]
branches: ["um40"]
workflow_dispatch:
pull_request:
branches: [ "um40" ]
branches: ["um40"]

jobs:
#### BASE IMAGES ####
Expand Down Expand Up @@ -241,5 +240,7 @@ jobs:
- name: Upload to R2
run: |
mcli alias set r2 '${{ secrets.S3_ENDPOINT }}' '${{ secrets.S3_KEY_ID }}' '${{ secrets.S3_SECRET_KEY }}'
mcli mirror --overwrite images 'r2/images'
wget https://dl.min.io/client/mc/release/linux-arm64/mc
chmod +x ./mc
./mc alias set r2 '${{ secrets.S3_ENDPOINT }}' '${{ secrets.S3_KEY_ID }}' '${{ secrets.S3_SECRET_KEY }}'
./mc mirror --overwrite images 'r2/images'

0 comments on commit 91acd8c

Please sign in to comment.