-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: yaml lint * yamllint make check + ignore files --------- Co-authored-by: Andrew Benington <[email protected]>
- Loading branch information
1 parent
fe4a67b
commit eef1a50
Showing
10 changed files
with
272 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,50 @@ | ||
--- | ||
# name of the action | ||
name: prerelease | ||
|
||
# trigger on push events with `v*` in tag | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
- "v*" | ||
|
||
# pipeline to execute | ||
jobs: | ||
prerelease: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: clone | ||
uses: actions/checkout@v3 | ||
with: | ||
# ensures we fetch tag history for the repository | ||
fetch-depth: 0 | ||
- name: clone | ||
uses: actions/checkout@v3 | ||
with: | ||
# ensures we fetch tag history for the repository | ||
fetch-depth: 0 | ||
|
||
- name: install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
# use version from go.mod file | ||
go-version-file: 'go.mod' | ||
cache: true | ||
check-latest: true | ||
- name: install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
# use version from go.mod file | ||
go-version-file: "go.mod" | ||
cache: true | ||
check-latest: true | ||
|
||
- name: setup | ||
run: | | ||
# setup git tag in Actions environment | ||
echo "GITHUB_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
- name: setup | ||
run: | | ||
# setup git tag in Actions environment | ||
echo "GITHUB_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
- name: build | ||
env: | ||
GOOS: linux | ||
CGO_ENABLED: '0' | ||
run: | | ||
make build-static-ci | ||
- name: build | ||
env: | ||
GOOS: linux | ||
CGO_ENABLED: "0" | ||
run: | | ||
make build-static-ci | ||
- name: publish | ||
uses: elgohr/Publish-Docker-Github-Action@master | ||
with: | ||
name: target/vela-k6 | ||
cache: true | ||
tag_names: true | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: publish | ||
uses: elgohr/Publish-Docker-Github-Action@master | ||
with: | ||
name: target/vela-k6 | ||
cache: true | ||
tag_names: true | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
--- | ||
# name of the action | ||
name: publish | ||
|
||
# trigger on push events with branch main | ||
on: | ||
push: | ||
branches: [ main ] | ||
branches: [main] | ||
|
||
# pipeline to execute | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: clone | ||
uses: actions/checkout@v3 | ||
with: | ||
# ensures we fetch tag history for the repository | ||
fetch-depth: 0 | ||
- name: clone | ||
uses: actions/checkout@v3 | ||
with: | ||
# ensures we fetch tag history for the repository | ||
fetch-depth: 0 | ||
|
||
- name: install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
# use version from go.mod file | ||
go-version-file: 'go.mod' | ||
cache: true | ||
check-latest: true | ||
- name: install go | ||
uses: actions/setup-go@v4 | ||
with: | ||
# use version from go.mod file | ||
go-version-file: "go.mod" | ||
cache: true | ||
check-latest: true | ||
|
||
- name: build | ||
env: | ||
GOOS: linux | ||
CGO_ENABLED: '0' | ||
run: | | ||
make build-static-ci | ||
- name: build | ||
env: | ||
GOOS: linux | ||
CGO_ENABLED: "0" | ||
run: | | ||
make build-static-ci | ||
- name: publish | ||
uses: elgohr/Publish-Docker-Github-Action@master | ||
with: | ||
name: target/vela-k6 | ||
cache: true | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: publish | ||
uses: elgohr/Publish-Docker-Github-Action@master | ||
with: | ||
name: target/vela-k6 | ||
cache: true | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.