Skip to content

fix: generate diff image more reliably (#64) #11

fix: generate diff image more reliably (#64)

fix: generate diff image more reliably (#64) #11

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
Release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Create version
run: |
git config user.name github-actions
git config user.email [email protected]
make release
env:
USE_RELEASE_VERSION: ${{ secrets.RELEASE_VERSION }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
tags: true
- name: Publish version
run: npm publish