V3: Start moderation refactor, add scoped session concept #333
Workflow file for this run
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: build-modix | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'wiki/**' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'wiki/**' | |
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 Docker Buildx | |
id: buildx | |
uses: docker/[email protected] | |
with: | |
version: latest | |
install: true | |
- name: Run Tests | |
uses: docker/[email protected] | |
with: | |
context: . | |
target: dotnet-test | |
push: false | |
cache-to: type=gha, scope=${{github.repository}} | |
cache-from: type=gha, scope=${{github.repository}} | |
- 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: . | |
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.MODIX_UPDATE_WEBHOOK }} |