Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag-based containers and releases CI #14

Merged
merged 4 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 117 additions & 0 deletions .github/workflows/ci-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
on:
push:
tags:
- 'v*'

name: ci-tag

env:
DOTNET_VERSION: 7.0.x
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/shocklink-api

jobs:

build-api:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup .NET SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Install dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Test
run: dotnet test --no-restore --verbosity normal

- name: Dotnet Publish
run: dotnet publish API/API.csproj -c Release -o ./publish

- name: Upload full artifacts
uses: actions/upload-artifact@v3
with:
name: full-dotnet-app
path: publish/*
retention-days: 1
if-no-files-found: error

- name: Upload internal artifacts
uses: actions/upload-artifact@v3
with:
name: only-shocklink-dlls
path: publish/ShockLink.*.dll
retention-days: 1
if-no-files-found: error

build-container:
runs-on: ubuntu-latest
needs: build-api

steps:
- name: Checkout
uses: actions/checkout@v4
with:
sparse-checkout: |
Dockerfile

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: full-dotnet-app
path: publish/

- name: Log in to Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest
type=ref,event=tag
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

release:
runs-on: ubuntu-latest
needs: build-container

steps:
- name: Download release notes
uses: actions/checkout@v4
with:
sparse-checkout: |
README.md

- name: Create release
uses: softprops/action-gh-release@v1
with:
body_path: README.md
tag_name: ${{ github.ref }}
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# ShockLink API

# Configuration

The API can be configured using the following environment variables:

|Variable|Example value|
|-|-|
|`DB`|`Host=docker-node;Port=1337;Database=root;Username=root;Password=root;Search Path=ShockLink`|
|`REDIS_HOST`|`redis`|
|`REDIS_PASSWORD`| |
|`CF_ACC_ID`| |
|`CF_IMG_KEY`| |
|`CF_IMG_URL`| |
|`MAILJET_KEY`| |
|`MAILJET_SECRET`| |

# Deployment

Expand Down