This commit is contained in:
Timothy Jaeryang Baek
2026-06-01 15:01:01 -07:00
parent de2360ac07
commit 4be25c4fdd
2 changed files with 2 additions and 15 deletions
+2 -4
View File
@@ -143,7 +143,7 @@ jobs:
merge:
runs-on: ubuntu-latest
needs: [build]
if: !cancelled()
if: ${{ !cancelled() }}
permissions:
contents: read
packages: write
@@ -233,9 +233,7 @@ jobs:
copy-to-dockerhub:
runs-on: ubuntu-latest
if: >-
!cancelled() &&
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
if: ${{ !cancelled() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) }}
needs: [merge]
continue-on-error: true
strategy:
-11
View File
@@ -56,14 +56,3 @@ jobs:
!.git
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Dispatch Docker build
uses: actions/github-script@v8
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'docker.yaml',
ref: 'v${{ steps.pkg.outputs.version }}',
})