Skip to content

Tag release v1.2.3

Tag release v1.2.3 #40

Workflow file for this run

name: Publish Apollo
on:
push:
tags: 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
publish-npm:
name: Publish to npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: yarn
registry-url: 'https://registry.npmjs.org'
scope: '@apollo-annotation'
- run: yarn --immutable
- run: |
yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }}
yarn workspaces foreach --no-private --all npm publish --tolerate-republish --tag devel
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-docker:
name: Build and push Docker image
uses: ./.github/workflows/build-and-push-docker.yml
with:
tag: devel