Skip to content

chore: package bump #27

chore: package bump

chore: package bump #27

Workflow file for this run

name: Package bump Bridge
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout bridge repository
uses: actions/checkout@v2
with:
repository: injectiveLabs/injective-bridge
path: bridge
token: ${{ secrets.GH_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
- name: Install dependencies
run: |
cd bridge
yarn install
- name: Commit changes
run: |
cd bridge
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 bridge
git push origin dev