Refactor to allow cluster details to be accessible by caller (#170) #77
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: Update grommet-leaflet-stable | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update-design-tokens-alpha-stable: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '22.4.1' | |
- name: Set NPM version | |
run: npm install -g [email protected] | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: yarn install | |
working-directory: grommet-leaflet | |
- name: Build | |
run: yarn build | |
working-directory: grommet-leaflet | |
- name: Update grommet-leaflet-stable | |
run: | | |
git config --global user.name "Grommet Community Bot" | |
git config --global user.email "[email protected]" | |
yarn release-stable | |
working-directory: grommet-leaflet | |
env: | |
GH_TOKEN: ${{ secrets.GH_ACTION_ACCESS_TOKEN }} |