Skip to content

Bump postcss from 8.4.21 to 8.4.31 in /web #30

Bump postcss from 8.4.21 to 8.4.31 in /web

Bump postcss from 8.4.21 to 8.4.31 in /web #30

Workflow file for this run

name: Build Web Docker Container
on:
push:
paths:
- "web/**"
- ".github/workflows/build-web.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/v3xlabs/worldcoin-name-web
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=edge
type=sha
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ./web/Dockerfile
context: ./web