Skip to content

fix(barcode-scanning): scan failed on some Android devices (#44) #18

fix(barcode-scanning): scan failed on some Android devices (#44)

fix(barcode-scanning): scan failed on some Android devices (#44) #18

Workflow file for this run

name: Release
on:
push:
branches:
- main
paths:
- .changeset/**
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
NODE_VERSION: 16
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Dependencies
run: npm ci
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: npm run release
commit: "chore(release): publish"
title: "chore(release): publish"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}