Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project_name: cgapp
env_files:
github_token: ~/.goreleaser/github_token
github_token: /home/koddr/.goreleaser/github_token

before:
hooks:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY cgapp /cgapp
RUN apk add --no-cache git npm

# Install frontend CLIs (globally and in silent mode).
RUN npm i -g -s \
RUN npm i -g -s --unsafe-perm \
create-react-app \
preact-cli \
@vue/cli \
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tasks:
- task: test
- git tag -a {{.TAG}} -m "{{.TAG}}"
- git push origin {{.TAG}}
- goreleaser --rm-dist
- sudo goreleaser --rm-dist

delete-tag:
desc: Delete git tag
Expand Down