Skip to content

v1.2.0

v1.2.0 #1

Workflow file for this run

name: Create Zip on Release
on:
workflow_dispatch:
release:
types: [published, edited]
jobs:
create_zip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Debug Variables
run: |
echo "github.event_name: ${{ github.event_name }}"
echo "github.ref_name: ${{ github.ref_name }}"
echo "github.event.repository.default_branch: ${{ github.event.repository.default_branch }}"
echo "github.event.release.target_commitish: ${{ github.event.release.target_commitish }}"
echo "github.event.release.prerelease: ${{ github.event.release.prerelease }}"
echo "github.event.release.draft: ${{ github.event.release.draft }}"
- name: Update Version in Manifest
if: ${{ github.event_name == 'release' && github.event.release.prerelease == false && github.event.release.draft == false }}
run: |
sed -i 's/\"version\"\s*\:\s*\".*\"/\"version\"\:\"${{ github.ref_name }}\"/g' ./custom_components/noonlight/manifest.json
- name: Update Version in const.py
if: ${{ github.event_name == 'release' && github.event.release.prerelease == false && github.event.release.draft == false }}
run: |
sed -i 's/VERSION \= \".*\"/VERSION \= \"${{ github.ref_name }}\"/' ./custom_components/noonlight/const.py
- name: Commit & Push Version Changes
if: ${{ github.event_name == 'release' && github.event.release.prerelease == false && github.event.release.draft == false }}
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.event.release.target_commitish }}
message: 'Updating to version ${{ github.ref_name }}'
- name: Create Zip
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'noonlight.zip'
directory: ./custom_components/noonlight
- name: Upload Zip to Release
if: ${{ github.event_name == 'release' }}
uses: Roang-zero1/[email protected]
with:
args: ./custom_components/noonlight/noonlight.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Add Zip to Action
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/[email protected]
with:
name: noonlight
path: ./custom_components/noonlight/noonlight.zip
if-no-files-found: error