We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9688d18 + a3ba636 commit f8a6f91Copy full SHA for f8a6f91
.github/workflows/ci.yml
@@ -1,5 +1,12 @@
1
name: CI
2
-on: [push, pull_request]
+on:
3
+ # don't double build on PRs.
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - master
8
+ tags-ignore:
9
+ - '**'
10
11
jobs:
12
build:
.github/workflows/release.yml
@@ -21,7 +21,7 @@ jobs:
21
uses: actions/checkout@v1
22
23
- name: Log into Docker registry
24
- run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
+ run: echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u ${{ github.actor }} --password-stdin
25
26
- name: Run GoReleaser
27
uses: goreleaser/goreleaser-action@v1
0 commit comments