-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
46 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,21 +8,19 @@ jobs: | |
steps: | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v1 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.15.1 | ||
go-version: 1.16.2 | ||
id: go | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v1 | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: go mod download | ||
|
||
- name: Lint | ||
run: | | ||
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.18.0 | ||
$(go env GOPATH)/bin/golangci-lint run | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v2 | ||
with: | ||
version: v1.39.0 | ||
args: --timeout=5m | ||
|
||
- name: Test | ||
run: go test ./... | ||
|
@@ -32,12 +30,42 @@ jobs: | |
if: contains(github.ref, 'refs/tags/v') | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_REPOSITORY: ${{ github.repository_owner }}/riser-controller | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v1 | ||
- uses: jerray/[email protected] | ||
uses: actions/checkout@v2 | ||
- name: Get the version | ||
id: get_version | ||
run: | | ||
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Docker build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
push: true | ||
build-args: VERSION=${{ steps.get_version.outputs.VERSION }} | ||
tags: "ghcr.io/${{ env.DOCKER_REPOSITORY }}:${{ steps.get_version.outputs.VERSION }}" | ||
cache-from: type=registry,ref=ghcr.io/${{ env.DOCKER_REPOSITORY }} | ||
cache-to: type=registry,ref=ghcr.io/${{ env.DOCKER_REPOSITORY }} | ||
- name: Create GitHub Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
repository: riserplatform/riser-controller | ||
auto_tag: true | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
draft: true | ||
prerelease: true | ||
body: | | ||
Docker: `docker pull ghcr.io/${{ env.DOCKER_REPOSITORY }}:${{ steps.get_version.outputs.VERSION }}` |
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