mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-07-15 21:42:27 +00:00
24 lines
573 B
YAML
24 lines
573 B
YAML
name: deploy
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
pull_request_target:
|
|
types: [labeled]
|
|
branches: [main]
|
|
|
|
jobs:
|
|
image:
|
|
if: github.event.label.name == 'run-ci' || github.event_name != 'pull_request_target'
|
|
permissions:
|
|
contents: write
|
|
uses: ./.github/workflows/build-image.yml
|
|
with:
|
|
distro: all
|
|
secrets:
|
|
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
|
|
R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
|
|
R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }}
|
|
R2_BUCKET: ${{ secrets.R2_BUCKET }}
|