Skip to content

Update

Update #16

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/irrigation-unlimited-card/irrigation-unlimited-card
npm install
npm run build
# Upload build file to the release 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/irrigation-unlimited-card/irrigation-unlimited-card/dist/irrigation-unlimited-card.js
asset_name: irrigation-unlimited-card.js
tag: ${{ github.ref }}
overwrite: true