Skip to content

fix(docs): add missing og meta tags #34

fix(docs): add missing og meta tags

fix(docs): add missing og meta tags #34

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
if: github.repository == 'oktaysenkan/monicon'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Clean
run: yarn clean
- name: Build all packages and apps
run: yarn build
- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
with:
publish: yarn release
version: yarn bump
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}