Skip to content

fix: update styles for better visibility in dark mode (#6) #9

fix: update styles for better visibility in dark mode (#6)

fix: update styles for better visibility in dark mode (#6) #9

Workflow file for this run

name: Zip and Release
on:
push:
paths:
- 'shutdown-dialogue@subashghimire.info.np/**'
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Extract version from metadata.json
id: extract_version
run: |
VERSION=$(jq -r '.version' shutdown-dialogue@subashghimire.info.np/metadata.json)
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV
- name: Zip the shutdown-dialogue@subashghimire.info.np directory contents
run: |
cd shutdown-dialogue@subashghimire.info.np
zip -r ../shutdown-dialogue@subashghimire.info.np.zip .
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ env.RELEASE_VERSION }}
body: "This release was automatically generated, only FOR GNOME 46, 47, 48 & 49."
files: shutdown-dialogue@subashghimire.info.np.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}