fix: typo in publish command
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 11s
Publish / Check GoReleaser config (pull_request) Has been skipped
Publish / Publish provider (pull_request) Has been skipped
CI Workflow / Code coverage report (pull_request) Has been cancelled
CI Workflow / Test readiness for publishing provider (pull_request) Has been cancelled
CI Workflow / CI (pull_request) Has been cancelled
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 11s
Publish / Check GoReleaser config (pull_request) Has been skipped
Publish / Publish provider (pull_request) Has been skipped
CI Workflow / Code coverage report (pull_request) Has been cancelled
CI Workflow / Test readiness for publishing provider (pull_request) Has been cancelled
CI Workflow / CI (pull_request) Has been cancelled
fix: refactor build action
This commit is contained in:
parent
49c84c6d07
commit
96acb50433
2 changed files with 42 additions and 12 deletions
52
.github/actions/build/action.yaml
vendored
52
.github/actions/build/action.yaml
vendored
|
|
@ -6,14 +6,24 @@ inputs:
|
||||||
description: "Go version to install"
|
description: "Go version to install"
|
||||||
default: '1.25'
|
default: '1.25'
|
||||||
required: true
|
required: true
|
||||||
golang-cilint-version:
|
java-distribution:
|
||||||
description: "Golangci-lint version to install"
|
description: "JAVA distribution to use (default: temurin)"
|
||||||
default: "2.7.2"
|
default: 'temurin'
|
||||||
required: true
|
java-version:
|
||||||
|
description: "JAVA version to use (default: 21)"
|
||||||
|
default: '21'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install needed tools
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
apt-get -y -qq update
|
||||||
|
apt-get -y -qq install jq python3 python3-pip python-is-python3 s3cmd git make wget
|
||||||
|
|
||||||
|
|
||||||
- name: Install Go ${{ inputs.go-version }}
|
- name: Install Go ${{ inputs.go-version }}
|
||||||
uses: actions/setup-go@v6
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
|
|
@ -21,14 +31,34 @@ runs:
|
||||||
check-latest: true
|
check-latest: true
|
||||||
go-version-file: 'go.mod'
|
go-version-file: 'go.mod'
|
||||||
|
|
||||||
# - name: Run golangci-lint
|
- name: Install go tools
|
||||||
# uses: golangci/golangci-lint-action@v9
|
|
||||||
# with:
|
|
||||||
# version: ${{ inputs.golang-cilint-version }}
|
|
||||||
|
|
||||||
- name: Install needed tools
|
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@${{ inputs.golang-cilint-version }}
|
go install golang.org/x/tools/cmd/goimports@latest
|
||||||
|
go install github.com/hashicorp/terraform-plugin-codegen-framework/cmd/tfplugingen-framework@latest
|
||||||
|
go install github.com/hashicorp/terraform-plugin-codegen-openapi/cmd/tfplugingen-openapi@latest
|
||||||
go install github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs@v0.24.0
|
go install github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs@v0.24.0
|
||||||
|
|
||||||
|
|
||||||
|
- name: Setup JAVA ${{ inputs.java-distribution }} ${{ inputs.go-version }}
|
||||||
|
uses: actions/setup-java@v5
|
||||||
|
with:
|
||||||
|
distribution: ${{ inputs.java-distribution }} # See 'Supported distributions' for available options
|
||||||
|
java-version: ${{ inputs.java-version }}
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- name: Run build pkg directory
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
go run cmd/main.go build
|
||||||
|
|
||||||
|
|
||||||
|
- name: Run make to build app
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
make build
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,7 @@ func publish() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create release dir - only the contents of this need to be uploaded to S3
|
// Create release dir - only the contents of this need to be uploaded to S3
|
||||||
log.Printf("* Creating reelase directory")
|
log.Printf("* Creating release directory")
|
||||||
err = os.MkdirAll(path.Join(p.RootPath, "release"), os.ModePerm)
|
err = os.MkdirAll(path.Join(p.RootPath, "release"), os.ModePerm)
|
||||||
if err != nil && !errors.Is(err, fs.ErrExist) {
|
if err != nil && !errors.Is(err, fs.ErrExist) {
|
||||||
return fmt.Errorf("error creating '%s' dir: %w", path.Join(p.RootPath, "release"), err)
|
return fmt.Errorf("error creating '%s' dir: %w", path.Join(p.RootPath, "release"), err)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue