Skip to content

Update release.yml

Update release.yml #6

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set current date as environment variable
run: echo "DATE=`date +'%Y.%m.%d'`" >>$GITHUB_ENV
- name: Building TCET Linux Xfce set-once Tar file
run: |
cd ..
touch tcet-linux-xfce-set-once.tar.gz
tar -czf tcet-linux-xfce-set-once.tar.gz tcet-linux-xfce-set-once/
touch checksum
sha256sum tcet-linux-xfce-set-once.tar.gz > checksum
mv checksum tcet-linux-xfce-set-once/
mv tcet-linux-xfce-set-once.tar.gz tcet-linux-xfce-set-once/
- name: Checking if release with date tag exist
run: |
tag=${{ env.DATE }}
if gh release view $tag; then
echo "RELEASE_EXISTS=true" >> $GITHUB_ENV
else
echo "RELEASE_EXISTS=false" >> $GITHUB_ENV
fi
- name: Checking if release with latest tag exist
run: |
tag=latest
if gh release view $tag; then
echo "LATEST_RELEASE_EXISTS=true" >> $GITHUB_ENV
else
echo "LATEST_RELEASE_EXISTS=false" >> $GITHUB_ENV
fi
- name: Deleting Dated release
if: env.RELEASE_EXISTS == 'true'
run: |
gh release delete ${{ env.DATE }}
- name: Delete Previous Latest release
if: env.LATEST_RELEASE_EXISTS == 'true'
run: |
gh release delete latest
- name: Release Tar File
run: |
gh release create ${{ env.DATE }} *tar.gz checksum --title "TCET-Linux Xfce set-once"
- name: Release Tar File with latest
run: |
gh release create latest *tar.gz checksum --latest --title "TCET-Linuxv Xfce set-once"
- name: Triggered PKGBUILD Action
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.PAT_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/tcet-opensource/tcet-linux-pkgbuild/dispatches \
-d '{"event_type":"trigger-workflow","client_payload":{"unit":false,"integration":true}}'