diff --git a/.gitea/workflows/docker.yml b/.gitea/workflows/docker.yml new file mode 100644 index 0000000..953a8a7 --- /dev/null +++ b/.gitea/workflows/docker.yml @@ -0,0 +1,40 @@ +name: Build and Publish +run-name: Build and Publish +on: [push] + +jobs: + build_and_publish: + runs-on: [ubuntu-latest] + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: | + git.i-am.nexus/nex/sentient-jimmy + tags: | + type=schedule + type=ref,event=branch + type=ref,event=pr + type=sha + + - name: Log into forgejo CR + uses: docker/login-action@v3 + with: + registry: git.i-am.nexus + username: nex + password: ${{ secrets.CR_PASSWORD }} + + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index a2b839e..2a58225 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: sentient-jimmy: - image: sentient-jimmy:latest + image: git.i-am.nexus/nex/sentient-jimmy:master depends_on: db: condition: service_healthy