Skip to content

Commit

Permalink
[F] Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Dec 23, 2023
1 parent bcf3333 commit 41d4de6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Nightly Build

on:
push:
branches: master
branches: [master]

jobs:
build:
Expand Down Expand Up @@ -67,3 +67,9 @@ jobs:
tag: "${{ env.VER }}-nightly"
token: ${{ secrets.GITHUB_TOKEN }}
draft: false

- name: Mark release undraft
run: |
gh release edit "${{ env.VER }}-nightly" --draft=false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 41d4de6

Please sign in to comment.