Skip to content

Commit 1bb1157

Browse files
authored
uses: "marvinpinto/action-automatic-releases@latest"
1 parent 713d7f4 commit 1bb1157

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,14 @@ jobs:
5151
with:
5252
name: artifacts
5353
path: ./out/*
54-
55-
- name: Upload to releases
54+
55+
- name: Upload to GitHub Releases
5656
if: github.event_name != 'pull_request' && github.ref_name == 'main'
57-
uses: softprops/action-gh-release@v1
57+
uses: "marvinpinto/action-automatic-releases@latest"
5858
with:
59-
files: out/*
60-
tag_name: continuous
59+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
60+
automatic_release_tag: "continuous"
61+
prerelease: true
62+
title: "Continuous Build"
63+
files: |
64+
./out/*

0 commit comments

Comments
 (0)