Skip to content

chore: create workflow release.yml #1

chore: create workflow release.yml

chore: create workflow release.yml #1

Workflow file for this run

name: Release
on:
push:
tags:
- "*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'release.zip'
exclusions: |
*.git*
- name: Generate checksum
uses: jmgilman/actions-generate-checksum@v1
with:
patterns: |
release.zip
- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
checksum.txt
release.zip