rls #26
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: rls | |
on: workflow_dispatch | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Compressing | |
run: tar -H pax --exclude=./README.md -cvf - ./* | zstd -T0 --ultra -20zvc - > ./njki | |
- name: Releasing | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
ghp() { echo "$sha" | cut -c "$1"; } | |
sha="$(openssl sha256 ./njki | cut -d ' ' -f2)" | |
shap="$(echo $(ghp 1-2)-$(ghp 3-5)-$(ghp 6-8)--$(ghp 9-10)-$(ghp 11-13)-$(ghp 14-16))" | |
gh release delete rolling --cleanup-tag -y || true | |
echo -e "#### SHA256 Part:\n\`\`\`\n${shap}\n\`\`\`\n> $(date)" |\ | |
gh release create rolling ./njki -F- |