Skip to content

Merge pull request #2 from michaelwolz/perf/android/improve-image-pro… #9

Merge pull request #2 from michaelwolz/perf/android/improve-image-pro…

Merge pull request #2 from michaelwolz/perf/android/improve-image-pro… #9

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
env:
NODE_VERSION: 20
jobs:
release:
name: Semantic Release
runs-on: ubuntu-latest
if: github.repository == 'michaelwolz/capacitor-camera-view'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Semantic Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release