docs: Update changelog #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Puppeteer Service | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the master branch | |
push: | |
branches: | |
- master | |
- rc | |
- uat | |
- stable | |
tags: | |
- "[vV][0-9]+.[0-9]+.[0-9]+" | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
# Also trigger on page_build, as well as release created events | |
page_build: | |
release: | |
types: # This configuration does not affect the page_build event above | |
- created | |
concurrency: ${{ github.ref }} | |
jobs: | |
build: | |
name: Build Puppeteer | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
lfs: true | |
- name: build-push | |
uses: docker/build-push-action@v1 | |
with: | |
username: ${{ secrets.DEPLOY_DOCKER_USERNAME }} | |
password: ${{ secrets.DEPLOY_DOCKER_PASSWORD }} | |
tag_with_ref: true | |
cache_froms: node:20 |