Skip to content

[docs only] Document counters #120

[docs only] Document counters

[docs only] Document counters #120

Workflow file for this run

name: Deploy Images to GHCR
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-image:

Check failure on line 10 in .github/workflows/publish_ghcr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish_ghcr.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
if: !contains(github.event.head_commit.message, '[docs only]')
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Run build with Gradle Wrapper
run: ./gradlew :build :shadowJar :outputVersion
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Image'
run: |
docker build . --tag ghcr.io/neoforged/camelot:latest --tag ghcr.io/neoforged/camelot:${{ env.BOT_VERSION }}
docker push ghcr.io/neoforged/camelot:latest
docker push ghcr.io/neoforged/camelot:${{ env.BOT_VERSION }}