Skip to content

fix: fix edit file key binding (alt-e) in diff and add (#415) #25

fix: fix edit file key binding (alt-e) in diff and add (#415)

fix: fix edit file key binding (alt-e) in diff and add (#415) #25

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