Merge pull request #61 from IBM/update_expiration_dates #31
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: Create a new release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.ADMIN_TOKEN }} | |
- name: setup nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: release using semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }} | |
GIT_AUTHOR_NAME: secrets.automation.dev | |
GIT_AUTHOR_EMAIL: secrets.automation.dev@il.ibm.com | |
GIT_COMMITTER_NAME: secrets.automation.dev | |
GIT_COMMITTER_EMAIL: secrets.automation.dev@il.ibm.com | |
run: | | |
sudo apt-get update | |
sudo apt-get install python3 | |
pip install --user bumpversion | |
npm install @semantic-release/changelog | |
npm install @semantic-release/exec | |
npm install @semantic-release/git | |
npm install @semantic-release/github | |
npm install @semantic-release/release-notes-generator -D | |
npx semantic-release |