Skip to content

chore: update version to 1.5.1 and add CANDOR.md for AI usage transpa… #183

chore: update version to 1.5.1 and add CANDOR.md for AI usage transpa…

chore: update version to 1.5.1 and add CANDOR.md for AI usage transpa… #183

Workflow file for this run

name: Build and Publish
on:
push:
branches: ["main", "development"]
tags: ["v*"]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/metadata-action@v5
id: meta
with:
images: ghcr.io/dimwitlabs/ode
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=development,enable=${{ github.ref == 'refs/heads/development' }}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}