Skip to content

Commit

Permalink
feat(ci): add manual trigger to build and publish workflow
Browse files Browse the repository at this point in the history
Added `workflow_dispatch` event to allow manual triggering of the build and publish workflow.
  • Loading branch information
obeone committed Dec 16, 2024
1 parent 045b46c commit 25bb51d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
name: Build and push

on:
workflow_dispatch:

schedule:
- cron: "49 5 * * *"

push:
branches: ["main"]
# Publish semver tags as releases.
tags: ["v*.*.*"]

pull_request:
branches: ["main"]

env:
# github.repository as <account>/<repo>
IMAGE_NAME: cyberchef
Expand Down

0 comments on commit 25bb51d

Please sign in to comment.