chore(deps): bump @nestjs/axios from 3.0.0 to 3.0.1 #80
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: code-gear > build | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
workflow_call: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: Creating a Production Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v3 | |
with: | |
main-branch-name: 'master' | |
- run: | | |
echo "BASE: ${{ env.NX_BASE }}" | |
echo "HEAD: ${{ env.NX_HEAD }}" | |
- name: Installing Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.8.0 | |
cache: 'yarn' | |
- name: Cache Yarn dependencies | |
uses: actions/cache@v3 | |
id: cache-yarn-cache | |
with: | |
path: | | |
.yarn/cache | |
node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/*.yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Installing dependencies | |
run: yarn install | |
- name: Creating a Production Build | |
run: yarn nx run root:build | |
- name: Pushing to build branch | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: build | |
FOLDER: dist | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MESSAGE: "Build: ({sha}) {msg}" |