Skip to content

Commit

Permalink
feat: add r2 bucket test
Browse files Browse the repository at this point in the history
  • Loading branch information
NichArchA82 committed Oct 19, 2024
1 parent fb442b0 commit 3e10492
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-packer-qemu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Packer build qemu

on:
push:

jobs:
build:
runs-on: codespaces
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Generate cloud-init iso
run: |
touch test.txt
- uses: ryand56/r2-upload-action@latest
with:
r2-account-id: ${{ secrets.R2_ACCOUNT_ID }}
r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }}
r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }}
r2-bucket: ${{ secrets.R2_BUCKET }}
source-dir: test.txt
destination-dir: ./

0 comments on commit 3e10492

Please sign in to comment.