Revert "Refresh user when navigating to Account Status" #70
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: Build and push to build branch. | |
on: | |
push: | |
branches: [trunk] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0 | |
- name: Install NodeJS | |
uses: actions/setup-node@5b52f097d36d4b0b2f94ed6de710023fbb8b2236 # v3.1.0 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install all dependencies | |
run: | | |
composer install | |
yarn | |
- name: Build | |
run: yarn workspaces run build | |
- name: Trim the repo down to just the plugin files | |
run: | | |
rm -rf node_modules | |
rm -rf settings/node_modules | |
rm -rf vendor | |
- name: Add all the plugin files | |
run: | | |
git add * --force | |
- name: Commit and push | |
uses: actions-js/push@a52398fac807b0c1e5f1492c969b477c8560a0ba # 1.3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: build | |
force: true | |
message: 'Build: ${{ github.sha }}' |