Skip to content

Commit

Permalink
feat: use dockerfile instead of published image (#8)
Browse files Browse the repository at this point in the history
* fix: use dockerfile instead of published image

* feat: bump package versions for semantic-release
  • Loading branch information
rdaniels6813 authored Nov 4, 2020
1 parent 881642a commit 14263ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM node:lts-alpine
RUN apk update && apk add git
RUN npm install -g semantic-release@17.1.1 \
RUN npm install -g semantic-release@17.2.2 \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/github@7.0.7 \
@semantic-release/[email protected].5 \
@semantic-release/github@7.1.1 \
@semantic-release/[email protected].6 \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected].4
@semantic-release/[email protected].5
RUN apk add --update make \
&& rm -rf /var/cache/apk/*
COPY *.sh /
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ outputs:
description: 'The version number (without a leading v) that was released (empty if no release occured)'
runs:
using: 'docker'
image: docker://rdaniels6813/semantic-release-alpine
image: ./Dockerfile
entrypoint: '/main.sh'
env:
GITHUB_TOKEN: ${{ inputs.github-token }}
Expand Down

0 comments on commit 14263ef

Please sign in to comment.