Skip to content

feat: update tweet view (#406) #138

feat: update tweet view (#406)

feat: update tweet view (#406) #138

Workflow file for this run

name: Generate Build Files and Update version #
on:
push:
branches:
- master
jobs:
yarn-build-and-update-version:
name: build
runs-on:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Build and Version
run: |
git config user.name 'Github Actions'
git config user.email [email protected]
npm version patch -m "ci: bump version to %s"
git push --follow-tags
CI=false yarn install && CI=false yarn run build
git add ./build -f
git commit -m "ci: automatic build fixes" || echo -n
git push --set-upstream origin master