Skip to content

Test script and workflow #42

Test script and workflow

Test script and workflow #42

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:
deploy-to-demo-staging-server:
name: Deploy to demo staging server
needs: [publish-docker]
uses: ./.github/workflows/deploy-to-demo-staging-server.yml