better build?
All checks were successful
Datadog Software Composition Analysis / Datadog SBOM Generation and Upload (push) Successful in 15s
Datadog Secrets Scanning / Datadog Static Analyzer (push) Successful in 15s
Datadog Static Analysis / Datadog Static Analyzer (push) Successful in 23s

This commit is contained in:
Tanishq Dubey 2025-03-14 22:35:39 -04:00
parent fa46d82874
commit dac4bea57c

View File

@ -2,7 +2,7 @@ name: Release
on: on:
release: release:
types: [created] types: [published]
jobs: jobs:
build: build:
@ -15,15 +15,29 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v1
- name: Login to DockerHub - name: Docker meta
uses: docker/login-action@v1 id: meta
uses: docker/metadata-action@v4
with: with:
username: ${{ secrets.DOCKER_USERNAME }} images: git.dws.rip/${{ github.repository }}
password: ${{ secrets.DOCKER_PASSWORD }} tags: |
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=semver,pattern={{version}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=semver,pattern={{major}}.{{minor}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=sha,format=long
type=ref,event=pr
- name: Build and push Docker image - name: Login to Gitea Container Registry
uses: docker/build-push-action@v2 uses: docker/login-action@v2
with:
registry: git.dws.rip
username: ${{ github.actor }}
password: ${{ secrets.GLOBAL_KEY }}
- name: Build and push
uses: docker/build-push-action@v4
with: with:
context: . context: .
push: true push: ${{ github.event_name != 'pull_request' }}
tags: ${{ secrets.DOCKER_USERNAME }}/foldsite:${{ github.ref_name }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}