puppeteer/.github/workflows/publish.yml

85 lines
2.9 KiB
YAML
Raw Normal View History

2022-05-30 09:47:15 +00:00
name: Publish
2022-05-18 16:06:58 +00:00
permissions: read-all
on:
workflow_dispatch:
push:
2022-05-30 09:47:15 +00:00
tags:
- '*v*'
2022-05-18 16:06:58 +00:00
jobs:
npm-publish:
name: Publish npm packages
runs-on: ubuntu-latest
permissions:
contents: read
steps:
2022-10-06 10:44:45 +00:00
- name: Check out repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install dependencies
2023-03-10 07:52:48 +00:00
run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: true
- name: Build packages
run: npm run build
- name: Set npm registry
run: npm config set registry 'https://wombat-dressing-room.appspot.com/'
- name: Publish packages
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_RELEASE}}
run: |
npm config set '//wombat-dressing-room.appspot.com/:_authToken' $NODE_AUTH_TOKEN
npm publish --workspace packages/${GITHUB_REF_NAME%-v*}
- name: Deprecate old Puppeteer versions
if: ${{ startsWith(github.ref_name, 'puppeteer-v') }}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_PUPPETEER}}
2022-11-15 11:54:25 +00:00
run: |
npm config set '//wombat-dressing-room.appspot.com/:_authToken' $NODE_AUTH_TOKEN
2022-11-15 11:54:25 +00:00
version_range=$(node tools/get_deprecated_version_range.js)
npm deprecate puppeteer@"$version_range" "$version_range is no longer supported" || true
docker-publish:
name: Publish Docker image
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref_name, 'puppeteer-v') }}
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
steps:
2022-10-06 10:44:45 +00:00
- name: Check out repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install dependencies
2023-03-10 07:52:48 +00:00
run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: true
- name: Build packages
run: npm run build
- name: Pack packages for docker
run: docker/pack.sh
# Based on https://docs.github.com/en/actions/publishing-packages/publishing-docker-images.
- name: Log in to the Container registry
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175 # v4.6.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
latest
type=match,pattern=puppeteer-v(\d+\.\d+\.\d+),group=1
- name: Build and push the Docker image
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 # v4.1.1
with:
context: ./docker
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}