mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
38 lines
968 B
YAML
38 lines
968 B
YAML
name: Create Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Semantic version (major | minor | patch | premajor | preminor | prepatch | prerelease)'
|
|
default: 'patch'
|
|
required: true
|
|
|
|
jobs:
|
|
version:
|
|
name: Create version
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.PAT_TOKEN }}
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- name: Npm install
|
|
run: npm ci
|
|
- name: Configure git
|
|
run: |
|
|
git config user.name "CI"
|
|
git config user.email "niklasvh@gmail.com"
|
|
- name: Create release
|
|
run: npm run release -- --preset eslint --release-as ${{ github.event.inputs.version }}
|
|
- name: Print details
|
|
run: |
|
|
cat package.json
|
|
cat CHANGELOG.md
|
|
git tag
|
|
- name: Push git version
|
|
run: git push --follow-tags origin master
|