Skip to content

Commit

Permalink
Add develop branch CI
Browse files Browse the repository at this point in the history
  • Loading branch information
redmushie committed Sep 23, 2023
1 parent 4bf9839 commit 50c2ad7
Show file tree
Hide file tree
Showing 2 changed files with 121 additions and 3 deletions.
119 changes: 119 additions & 0 deletions .github/workflows/ci-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
on:
push:
branches:
- develop
pull_request:
branches:
- develop
types: [opened, reopened, synchronize]

name: ci-develop

env:
BRANCH: develop
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={{branch}},enable=${{ github.ref_name == env.BRANCH }}
type=ref,event=branch
type=ref,event=pr
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

# publish:
# runs-on: ubuntu-latest
# needs: build

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

# - name: Download artifacts
# uses: actions/download-artifact@v3
# with:
# name: artifacts
5 changes: 2 additions & 3 deletions .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@ on:
push:
branches:
- master
- feature/github-ci
pull_request:
branches:
- master
- feature/github-ci
types: [opened, reopened, synchronize]

name: ci-master

env:
BRANCH: master
DOTNET_VERSION: 7.0.x
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository_owner }}/shocklink-api
Expand Down Expand Up @@ -91,7 +90,7 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value={{branch}},enable=${{ github.ref_name == 'master' }}
type=raw,value={{branch}},enable=${{ github.ref_name == env.BRANCH }}
type=ref,event=branch
type=ref,event=pr
Expand Down

0 comments on commit 50c2ad7

Please sign in to comment.