-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add wrapper script * feat: add builds * fix(wrapper): binary directory * chore(wrapper): add warning * fix(wrapper): args input * chore(wrapper): remove input warning * fix(wrapper): read assets permission denied * chore(wrapper): warn only on wrong configuration * chore: bump version
- Loading branch information
1 parent
6b32778
commit 59dc277
Showing
19 changed files
with
769 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
# project | ||
coverage.txt | ||
/vendor/ | ||
/release/ | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /opt/app | |
FROM scratch | ||
LABEL "repository"="https://github.com/anton-yurchenko/git-release" | ||
LABEL "maintainer"="Anton Yurchenko <[email protected]>" | ||
LABEL "version"="3.2.0" | ||
LABEL "version"="3.3.0" | ||
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ | ||
COPY --from=build /etc/passwd /etc/passwd | ||
COPY LICENSE.md /LICENSE.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
name: 'Git Release' | ||
description: 'Create a GitHub Release with Assets and Changelog' | ||
name: "Git Release" | ||
description: "Create a GitHub Release with Assets and Changelog" | ||
branding: | ||
icon: 'tag' | ||
color: 'black' | ||
icon: "tag" | ||
color: "black" | ||
inputs: | ||
args: | ||
description: "Release Assets" | ||
required: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "node12" | ||
main: "wrapper.js" |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.