Skip to content

chore(deps-dev): bump @sigstore/verify from 3.1.0 to 3.1.1 (#3377) #170

chore(deps-dev): bump @sigstore/verify from 3.1.0 to 3.1.1 (#3377)

chore(deps-dev): bump @sigstore/verify from 3.1.0 to 3.1.1 (#3377) #170

# Build and push a docker image from the latest merge to "develop" branch
on:
push:
branches:
- develop
jobs:
tdmapp:
runs-on: ubuntu-latest
name: build & push image
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: tdmcalc/tdmapp
tags: |
develop
${{ github.sha }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}