Skip to content

build(deps-dev): bump firebase-tools from 13.9.0 to 13.10.1 (#176) #155

build(deps-dev): bump firebase-tools from 13.9.0 to 13.10.1 (#176)

build(deps-dev): bump firebase-tools from 13.9.0 to 13.10.1 (#176) #155

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: cache .yarn/
id: yarn-cache
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-cache-folder-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }}
restore-keys: |
yarn-cache-folder-
- run: yarn install
- run: yarn build
- run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO: re-enable releases
- run: echo 'Skipped "yarn deploy-ci" 🚫'
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}