v1.2.1 #4
Workflow file for this run
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
--- | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
####################################### | |
# Start the job on all push to master # | |
####################################### | |
name: "Build & Deploy - RELEASE" | |
on: | |
release: | |
# Want to run the automation when a release is created | |
types: ["created"] | |
permissions: read-all | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: read-all | |
environment: | |
name: release | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup .npmrc file to publish to npm | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
# Defaults to the user or organization that owns the workflow file | |
scope: "nvuillam" | |
- run: yarn | |
- run: yarn config set network-timeout 300000 && yarn publish || echo "Unable to publish package version. Or published in background because of NPM bug ?" | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |