Skip to content

chore: package bump #59

chore: package bump

chore: package bump #59

Workflow file for this run

name: Package bump Admin UI
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout admin-ui repository
uses: actions/checkout@v4
with:
fetch-depth: 0
path: admin-ui
token: ${{ secrets.GH_TOKEN }}
repository: injectiveLabs/injective-admin-ui
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: |
cd admin-ui
yarn install
- name: Commit changes
run: |
cd admin-ui
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add .
git commit -m "chore: package bump"
- name: Push changes
run: |
cd admin-ui
git push origin master