force only succ
This commit is contained in:
parent
64207398ee
commit
7d410b74c5
4 changed files with 7 additions and 6 deletions
2
.github/workflows/docker-publish.yml
vendored
2
.github/workflows/docker-publish.yml
vendored
|
|
@ -20,8 +20,8 @@ env:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
|
|
|||
1
.github/workflows/e2e.yml
vendored
1
.github/workflows/e2e.yml
vendored
|
|
@ -9,6 +9,7 @@ jobs:
|
|||
|
||||
E2E:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||
steps:
|
||||
|
||||
- name: Check out code
|
||||
|
|
|
|||
9
.github/workflows/go.yml
vendored
9
.github/workflows/go.yml
vendored
|
|
@ -16,6 +16,8 @@ jobs:
|
|||
|
||||
- name: Set up Go 1.x
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ^1.17
|
||||
id: go
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
|
|
@ -26,11 +28,8 @@ jobs:
|
|||
set -e
|
||||
|
||||
go version
|
||||
go get -u golang.org/x/lint/golint
|
||||
go get -u github.com/gordonklaus/ineffassign
|
||||
|
||||
sudo apt update
|
||||
sudo apt install -y libpam0g-dev
|
||||
go install golang.org/x/lint/golint
|
||||
go install github.com/gordonklaus/ineffassign
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
|
|
|
|||
1
.github/workflows/snap.yaml
vendored
1
.github/workflows/snap.yaml
vendored
|
|
@ -10,6 +10,7 @@ jobs:
|
|||
|
||||
snap:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
||||
steps:
|
||||
|
||||
- name: Check out code
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue