Skip to content

Deps

Deps #351

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GOLANGCI_VERSION: v1.39.0
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.39.0
args: --timeout=5m
- name: Test
run: go test ./...
release:
needs: build
if: contains(github.ref, 'refs/tags/v')
name: Create Release
runs-on: ubuntu-latest
env:
DOCKER_REPOSITORY: ${{ github.repository_owner }}/riser-server
steps:
- name: Check out code
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
file: docker/Dockerfile
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:
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 }}`