fix: fix pipeline generator commands
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 5s
CI Workflow / CI run tests (pull_request) Failing after 2m27s
CI Workflow / CI run build and linting (pull_request) Failing after 2m12s
CI Workflow / Code coverage report (pull_request) Has been skipped
CI Workflow / Test readiness for publishing provider (pull_request) Failing after 2m55s
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 5s
CI Workflow / CI run tests (pull_request) Failing after 2m27s
CI Workflow / CI run build and linting (pull_request) Failing after 2m12s
CI Workflow / Code coverage report (pull_request) Has been skipped
CI Workflow / Test readiness for publishing provider (pull_request) Failing after 2m55s
This commit is contained in:
parent
452f077da2
commit
aaad987d6d
4 changed files with 6 additions and 6 deletions
2
.github/actions/acc_test/action.yaml
vendored
2
.github/actions/acc_test/action.yaml
vendored
|
|
@ -69,7 +69,7 @@ runs:
|
|||
- name: Prepare pkg_gen directory
|
||||
shell: bash
|
||||
run: |
|
||||
go run cmd/main.go build -p
|
||||
go run generator/main.go build -p
|
||||
|
||||
- name: Run acceptance test file
|
||||
if: ${{ inputs.test_file != '' }}
|
||||
|
|
|
|||
2
.github/actions/build/action.yaml
vendored
2
.github/actions/build/action.yaml
vendored
|
|
@ -51,7 +51,7 @@ runs:
|
|||
shell: bash
|
||||
run: |
|
||||
set -e
|
||||
go run cmd/main.go build
|
||||
go run generator/main.go build
|
||||
|
||||
- name: Run make to build app
|
||||
shell: bash
|
||||
|
|
|
|||
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
|
||||
- name: Run build pkg directory
|
||||
run: |
|
||||
go run cmd/main.go build
|
||||
go run generator/main.go build
|
||||
|
||||
- name: Set up s3cfg
|
||||
run: |
|
||||
|
|
@ -96,7 +96,7 @@ jobs:
|
|||
- name: Prepare provider directory structure
|
||||
run: |
|
||||
VERSION=$(jq -r .version < dist/metadata.json)
|
||||
go run cmd/main.go \
|
||||
go run generator/main.go \
|
||||
publish \
|
||||
--namespace=mhenselin \
|
||||
--providerName=stackitprivatepreview \
|
||||
|
|
|
|||
4
.github/workflows/publish.yaml
vendored
4
.github/workflows/publish.yaml
vendored
|
|
@ -70,7 +70,7 @@ jobs:
|
|||
set -e
|
||||
mkdir -p generated/services
|
||||
mkdir -p generated/internal/services
|
||||
go run cmd/main.go build
|
||||
go run generator/main.go build
|
||||
|
||||
- name: Set up s3cfg
|
||||
run: |
|
||||
|
|
@ -116,7 +116,7 @@ jobs:
|
|||
- name: Prepare provider directory structure
|
||||
run: |
|
||||
VERSION=$(jq -r .version < dist/metadata.json)
|
||||
go run cmd/main.go \
|
||||
go run generator/main.go \
|
||||
publish \
|
||||
--namespace=mhenselin \
|
||||
--providerName=stackitprivatepreview \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue