feat: add acurast icon #315
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: lts/* | |
| cache: yarn | |
| - name: Cache dependencies | |
| uses: actions/cache@v3 | |
| env: | |
| cache-name: cache-yarn-store | |
| with: | |
| path: .yarn/cache | |
| key: ${{ runner.os }}-${{ matrix.node-version }}-release-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ matrix.node-version }}-release-${{ env.cache-name }}- | |
| ${{ runner.os }}-${{ matrix.node-version }}-release- | |
| ${{ runner.os }}- | |
| - run: yarn | |
| - run: npx semantic-release --branches main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Notify update to group | |
| run: node notify.mjs | |
| env: | |
| WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }} |