-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update all non-major dependencies (#36)
* Update all non-major dependencies * Release workflow * checkov * format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nicolas Vuillamy <nicolas.vuillamy@gmail.com>
- Loading branch information
1 parent
85552f2
commit 8c963d9
Showing
3 changed files
with
1,777 additions
and
961 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
# | ||
# 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@v3 | ||
# Setup .npmrc file to publish to npm | ||
- uses: actions/setup-node@v3 | ||
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 }} |
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
Oops, something went wrong.