Skip to content

Merge pull request #61 from basedosdados/feat/thread-language-locale #45

Merge pull request #61 from basedosdados/feat/thread-language-locale

Merge pull request #61 from basedosdados/feat/thread-language-locale #45

name: Build Staging
on:
push:
branches:
- staging
paths-ignore:
- "**/*.md"
# Allow manual execution from the Actions tab
workflow_dispatch:
jobs:
build-staging:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: staging
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push staging image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:staging
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.revision=${{ github.sha }}