Skip to content

Commit

Permalink
adding extra steps to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khill-fbmc committed Jul 19, 2024
1 parent d65a71b commit e95a383
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Build
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18"

- name: Build Extension
run: |-
npm ci
npm run build
Expand All @@ -23,3 +28,9 @@ jobs:
with:
name: retool-embedder-${{ github.sha }}
path: retool-embedder-${{ github.event.head_commit.id }}.zip

- name: Archive retool-embedder Artifact
uses: ncipollo/release-action@v1
with:
artifacts: "retool-embedder-${{ github.event.head_commit.id }}.zip"
body: "# Retool Embedder CI Build\n## retool-embedder-${{ github.event.head_commit.id }}.zip"

0 comments on commit e95a383

Please sign in to comment.