Skip to content

v3.8.3

v3.8.3 #3

Workflow file for this run

name: Release
on:
release:
types: [published]
jobs:
release:
name: Prepare release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
# Build
- name: Build the file
run: |
cd /home/runner/work/lovelace-grocy-chores-card/lovelace-grocy-chores-card
npm install
npm run build
# Upload build file to the releas as an asset.
- name: Upload zip to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /home/runner/work/lovelace-grocy-chores-card/lovelace-grocy-chores-card/output/grocy-chores-card.js
asset_name: grocy-chores-card.js
tag: ${{ github.ref }}
overwrite: true