Skip to content

Commit

Permalink
updated manifest.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyimbi Odero committed Dec 1, 2024
1 parent 3417265 commit 0353dd7
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
.github/workflows/release.yml
name: Release Builds

on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Build plugin
run: |
npm install
npm run build
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag="${GITHUB_REF#refs/tags/}"
gh release create "$tag" \
--title="$tag" \
--draft=false \
--prerelease=false \
main.js manifest.json styles.css

0 comments on commit 0353dd7

Please sign in to comment.