build: update deps and ramda functions (#51) #32
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
name: Release | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
on: | |
push: | |
branches: [master] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
release: | |
name: Semantic release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
token: ${{ secrets.GH_TOKEN_NELSON }} | |
- name: Install deps | |
uses: borales/[email protected] | |
with: | |
cmd: install --pure-lockfile # will run `yarn install` command | |
- name: Semantic release | |
uses: cycjimmy/[email protected] | |
env: | |
GIT_AUTHOR_NAME: ${{ secrets.GIT_USERNAME }} | |
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_EMAIL }} | |
GIT_COMMITTER_NAME: ${{ secrets.GIT_USERNAME }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }} | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_NELSON }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
HUSKY: 0 | |
with: | |
semantic_version: 17.0.7 | |
extra_plugins: | | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] |