Skip to content

Commit

Permalink
adding build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khill-fbmc committed Jul 19, 2024
1 parent 1b07dff commit 23931db
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build & Publish Extension

on:
push:
branches: ["main"]

jobs:
build-retool-embedder:
name: Build Chrome extension artifact
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Build
run: |-
npm ci
npm run build
zip -r retool-embedder-${{ github.event.head_commit.id }}.zip build
- name: Archive retool-embedder Artifact
uses: actions/upload-artifact@v2
with:
name: retool-embedder-${{ github.sha }}
path: retool-embedder-${{ github.event.head_commit.id }}.zip

0 comments on commit 23931db

Please sign in to comment.