Skip to content

Merge pull request #9 from NdoleStudio/dependabot/npm_and_yarn/web/pr… #18

Merge pull request #9 from NdoleStudio/dependabot/npm_and_yarn/web/pr…

Merge pull request #9 from NdoleStudio/dependabot/npm_and_yarn/web/pr… #18

Workflow file for this run

name: Build, Test & Publish
on:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
env:
DOCKER_BUILDKIT: 1
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to Docker Hub
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
with:
images: |
ndolestudio/httpmock
ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest
type=raw,value=main
- name: Build and push docker image
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
with:
context: ./api
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: APP_VERSION=${{ github.sha }}
if: github.event_name != 'pull_request'
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
repository: ndolestudio/httpmock
readme-filepath: ./README.md
if: github.event_name != 'pull_request'