Skip to content

Commit 4accc05

Browse files
authored
Create automatic-releases-noartifacts.yml
1 parent 2a285e3 commit 4accc05

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: automatic-releases-with-sha-action test release with no artifacts
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
tag:
7+
type: string
8+
required: true
9+
annotation:
10+
type: string
11+
required: false
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@main
18+
- uses: plu5/automatic-releases-with-sha-action@main
19+
with:
20+
repo_token: ${{ secrets.GITHUB_TOKEN }}
21+
automatic_release_tag: ${{ inputs.tag }}
22+
tag_annotation: ${{ inputs.annotation }}
23+
prerelease: false
24+
files: ./dist/*

0 commit comments

Comments
 (0)