mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 04:32:15 +01:00
fix(ci): missing checkout step on reusable workflow delete
This commit is contained in:
1
.github/workflows/__build-push.yml
vendored
1
.github/workflows/__build-push.yml
vendored
@@ -22,6 +22,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_push:
|
build_push:
|
||||||
|
name: Build and push Docker images
|
||||||
runs-on: ${{ inputs.runs_on }}
|
runs-on: ${{ inputs.runs_on }}
|
||||||
outputs:
|
outputs:
|
||||||
tags: ${{ steps.build_push.outputs.tags }}
|
tags: ${{ steps.build_push.outputs.tags }}
|
||||||
|
|||||||
4
.github/workflows/__delete.yml
vendored
4
.github/workflows/__delete.yml
vendored
@@ -13,8 +13,12 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
delete:
|
delete:
|
||||||
|
name: Delete Docker images
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check out code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Delete
|
- name: Delete
|
||||||
uses: gotenberg/gotenberg-release-action/actions/delete@main
|
uses: gotenberg/gotenberg-release-action/actions/delete@main
|
||||||
with:
|
with:
|
||||||
|
|||||||
1
.github/workflows/__merge-clean.yml
vendored
1
.github/workflows/__merge-clean.yml
vendored
@@ -13,6 +13,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
merge_clean:
|
merge_clean:
|
||||||
|
name: Merge and clean Docker images
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
|
|||||||
Reference in New Issue
Block a user