Skip to content

Commit 151e400

Browse files
authored
fix: move generator executable to releases (#165)
1 parent 2665ccf commit 151e400

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/generator.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,12 @@ jobs:
4848
run: |
4949
mkdir -p ../artifacts
5050
stack --local-bin-path=../artifacts install
51-
- name: Upload generator artifact
52-
uses: actions/upload-artifact@v4.6.2
51+
- name: Upload generated artifact to a release
52+
uses: softprops/action-gh-release@v2.4.1
5353
with:
54-
name: dockerfile-generator
55-
path: artifacts/generator
54+
name: Generator
55+
tag_name: generator-binary
56+
prerelease: true
57+
overwrite_files: 'true'
58+
files: |
59+
artifacts/generator

0 commit comments

Comments
 (0)