This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
v0.3.4 #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |