Add dummy light #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
name: Create Release | |
jobs: | |
build-project: | |
name: Build Project | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm install | |
- name: Generate build | |
run: npm run build | |
env: | |
CI: false | |
# Share artifact inside workflow | |
- name: Share artifact inside workflow | |
uses: actions/upload-artifact@v4 | |
with: | |
name: DiyHueUI | |
path: | | |
build | |
dist | |
release-project: | |
name: Create Release | |
runs-on: ubuntu-latest | |
needs: build-project | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: DiyHueUI | |
- name: Test artifact download | |
run: ls -R | |
- name: Archive artifact | |
uses: thedoctor0/zip-release@main | |
with: | |
filename: DiyHueUI-release.zip | |
- name: Create and Upload Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref_name }} | |
name: DiyHue UI release ${{ github.ref_name }} | |
files: DiyHueUI-release.zip | |
make_latest: true |