name: Build and Deploy on: push: branches: [main] pull_request: branches: [main] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log in to Gitea Container Registry if: github.event_name == 'push' uses: docker/login-action@v3 with: registry: git.commandware.com username: ${{ secrets.USERNAME }} password: ${{ secrets.TOKEN }} - name: Extract metadata id: meta uses: docker/metadata-action@v5 with: images: git.commandware.com/dnviti/calcolatore_prezzi_software - name: Build and push Docker image uses: docker/build-push-action@v5 with: context: . push: ${{ github.event_name == 'push' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}