Update build.yml #2
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
name: Docker Image CI | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- '.github/workflows/**' | |
branches: [ main ] | |
pull_request: | |
paths: | |
- 'src/**' | |
- '.github/workflows/**' | |
branches: [ main ] | |
jobs: | |
build-api: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./src/Nager.PublicSuffixService | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
working-directory: ${{env.working-directory}} | |
- name: Build | |
run: dotnet build --no-restore --configuration Release | |
working-directory: ${{env.working-directory}} | |
- name: Publish | |
run: dotnet publish --no-restore --configuration Release --output publish | |
working-directory: ${{env.working-directory}} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
# Artifact name | |
name: api | |
# Directory containing files to upload | |
path: ${{env.working-directory}}/publish/ | |
# Days before delete | |
retention-days: 1 | |
build-docker: | |
needs: [build-api] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: api | |
path: publish | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: downcase GITHUB_REPOSITORY | |
run: | | |
echo "REPOSITORY_LOWERCASE=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./src/Dockerfile | |
push: true | |
tags: ghcr.io/nager/${REPOSITORY_LOWERCASE}:latest |