-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "feat: pre-build dockerfile" (#220)
- Loading branch information
Showing
8 changed files
with
26 additions
and
131 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,10 @@ | ||
# hadolint ignore=DL3007 | ||
FROM ghcr.io/anothrnick/github-tag-action:latest | ||
|
||
LABEL "repository"="https://github.com/anothrnick/github-tag-action" | ||
LABEL "homepage"="https://github.com/anothrnick/github-tag-action" | ||
FROM node:16-alpine | ||
LABEL "repository"="https://github.com/anothrNick/github-tag-action" | ||
LABEL "homepage"="https://github.com/anothrNick/github-tag-action" | ||
LABEL "maintainer"="Nick Sjostrom" | ||
|
||
# This Dockerfile is empty, it simply pulls a prebuilt image to speed up the Action. | ||
RUN apk --no-cache add bash git curl jq && npm install -g semver | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
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,16 +1,16 @@ | ||
name: "Github Tag Bump" | ||
description: "Bump and push git tag on merge" | ||
author: "Nick Sjostrom" | ||
name: 'Github Tag Bump' | ||
description: 'Bump and push git tag on merge' | ||
author: 'Nick Sjostrom' | ||
runs: | ||
using: "docker" | ||
image: "Dockerfile" | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
outputs: | ||
new_tag: | ||
description: "Generated tag" | ||
description: 'Generated tag' | ||
tag: | ||
description: "The latest tag after running this action" | ||
description: 'The latest tag after running this action' | ||
part: | ||
description: "The part of version which was bumped" | ||
description: 'The part of version which was bumped' | ||
branding: | ||
icon: "git-merge" | ||
color: "purple" | ||
icon: 'git-merge' | ||
color: 'purple' |
This file was deleted.
Oops, something went wrong.