Skip to content

Commit

Permalink
Merge pull request #33 from golemfactory/beta
Browse files Browse the repository at this point in the history
Release beta to master
  • Loading branch information
grisha87 authored Sep 22, 2023
2 parents 7b88268 + 02b9bce commit bc76808
Show file tree
Hide file tree
Showing 27 changed files with 1,588 additions and 623 deletions.
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
target-branch: "beta"
schedule:
interval: "weekly"
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ jobs:
npm run format:check
npm run lint
npm run build
npm ln
golem-sdk --version
82 changes: 82 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Release Pipeline

on:
push:
branches:
# Regular release channels
- master
- next
- beta
- alpha
# Support, hotfix branches like: 1.0.x or 1.x
- '([0-9]+)(\.([0-9]+))?\.x'

# Allows triggering the workflow manually
workflow_dispatch:

# We're going to interact with GH from the pipelines, so we need to get some permissions
permissions:
contents: read # for checkout

jobs:
regular-checks:
name: Build and unit-test on supported platforms and NodeJS versions
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3

- name: Setup NodeJS ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Perform regular checks
run: |
npm install
npm run format:check
npm run lint
npm run build
npm ln
golem-sdk --version
release:
name: Release to NPM and GitHub
needs: regular-checks
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup NodeJS
uses: actions/setup-node@v3
with:
# Semantic release requires this as bare minimum
node-version: 18

- name: Install dependencies
run: npm install

- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures

- name: Build the SDK for release
run: npm run build

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ dist/
.vscode/
.DS_Store

manifest.json
manifest.json
*.sig

data/project-templates/**/package-lock.json
data/project-templates/**/node_modules
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.*
tsconfig.json
node_modules/
data/**/package-lock.json
data/**/node_modules/
src/
Loading

0 comments on commit bc76808

Please sign in to comment.