Skip to content

Version 1.0.0

Version 1.0.0 #24

Workflow file for this run

name: Create tar
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Archive
run: tar --exclude=".git" --exclude="picosnitch.tar.gz" -czf - * > picosnitch.tar.gz
- name: Hash
run: sha256sum picosnitch.tar.gz
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: picosnitch.tar.gz