Skip to content

Meta: add an .editorconfig and apply it to the codebase (#404) #24

Meta: add an .editorconfig and apply it to the codebase (#404)

Meta: add an .editorconfig and apply it to the codebase (#404) #24

Workflow file for this run

name: Release
on:
push:
tags:
- '**'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Package
run: tar -czf forgit-${{github.ref_name}}.tar.gz --exclude LICENSE --exclude README.md *
- name: Generate Changelog
id: changelog
run: .github/scripts/changelog.sh > CHANGELOG.md
continue-on-error: true
- name: Release
uses: softprops/action-gh-release@v2
if: steps.changelog.outcome == 'success'
with:
body_path: CHANGELOG.md
files: forgit-${{github.ref_name}}.tar.gz