Skip to content

chore: package bump - skip deploy #16

chore: package bump - skip deploy

chore: package bump - skip deploy #16

Workflow file for this run

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