Skip to content

Commit

Permalink
add workflow to trigger nightly build
Browse files Browse the repository at this point in the history
Signed-off-by: Sunny Yip <sunny@kusari.dev>
  • Loading branch information
sunnyyip committed Sep 8, 2023
1 parent 56d802e commit f602705
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/nightly_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,17 @@ jobs:
github.git.deleteRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: "tags/nightly"
ref: "tags/v0.0.0-nightly"
})
github.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: "tags/v0.0.0-nightly",
sha: context.sha
})
# - name: Create and publish compose tarball
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit f602705

Please sign in to comment.