Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

v0.3.4

v0.3.4 #20

Workflow file for this run

name: Create Release on Tag Push
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v3
- name: Package zip
uses: vimtor/action-zip@v1
with:
files: excalidraw/ icon.png index.html index.js LICENSE plugin.json preview.png README.md index.css
recursive: false
dest: package.zip
- name: Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "package.zip"
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
makeLatest: true