Skip to content

v2.6.1 - Bug fix and Slovak translation added #16

v2.6.1 - Bug fix and Slovak translation added

v2.6.1 - Bug fix and Slovak translation added #16

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: Update Version in Manifest
if: ${{ github.event_name == 'release' }}
run: |
sed -i 's/\"version\"\s*\:\s*\".*\"/\"version\"\:\"${{ github.ref_name }}\"/g' ./custom_components/places/manifest.json
- name: Update Version in const.py
if: ${{ github.event_name == 'release' }}
run: |
sed -i 's/VERSION \= \".*\"/VERSION \= \"${{ github.ref_name }}\"/' ./custom_components/places/const.py
- name: Commit & Push Version Changes
if: ${{ github.event_name == 'release' }}
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: 'master'
message: 'Updating to version ${{ github.ref_name }}'
- name: Create Zip
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'places.zip'
directory: ./custom_components/places
- name: Upload Zip to Release
if: ${{ github.event_name == 'release' }}
uses: Roang-zero1/[email protected]
with:
args: ./custom_components/places/places.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Add Zip to Action
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/[email protected]
with:
name: places
path: ./custom_components/places/places.zip
if-no-files-found: error