mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
quickshell and hyprland additions
This commit is contained in:
37
.config/quickshell/caelestia/.github/workflows/release.yml
vendored
Normal file
37
.config/quickshell/caelestia/.github/workflows/release.yml
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
name: Create release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Create packages
|
||||
run: |
|
||||
mkdir -p release
|
||||
rsync -av \
|
||||
--exclude='release' \
|
||||
--exclude='.*' \
|
||||
--exclude='nix' \
|
||||
--exclude='flake.lock' \
|
||||
--exclude='flake.nix' \
|
||||
. release
|
||||
tar -czf caelestia-shell-${{ github.ref_name }}.tar.gz release
|
||||
cp caelestia-shell-${{ github.ref_name }}.tar.gz caelestia-shell-latest.tar.gz
|
||||
|
||||
- name: Create release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: |
|
||||
caelestia-shell-${{ github.ref_name }}.tar.gz
|
||||
caelestia-shell-latest.tar.gz
|
||||
generate_release_notes: true
|
||||
Reference in New Issue
Block a user