Skip to content

Merge pull request #57 from discord-csharp/net9 #52

Merge pull request #57 from discord-csharp/net9

Merge pull request #57 from discord-csharp/net9 #52

name: build-csharprepl
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name == 'push'
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
with:
version: latest
install: true
- name: Extract Docker metadata for main build
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=${{ github.event_name == 'push' }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
platforms: linux/arm/v7,linux/arm64,linux/amd64
push: ${{ github.event_name == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: type=gha, scope=${{github.repository}}
cache-from: type=gha, scope=${{github.repository}}
publish:
runs-on: ubuntu-latest
needs: build
steps:
- name: Sleep for 15 seconds
if: ${{ github.event_name == 'push' }}
run: sleep 15s
shell: bash
- name: Signal New Build
uses: enflo/curl-action@fabe347922c7a9e88bafa15c4b7d6326ea802695
if: ${{ github.event_name == 'push' }}
with:
curl: -X POST ${{ secrets.REPL_UPDATE_WEBHOOK }}