Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create build-and-release.yml #63

Merged
merged 18 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
name: Build and Release

on:
push:
branches:
- main

jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18"

- name: Install dependencies
run: npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

- name: Build the project
run: npm run build

- name: Build binaries with pkg
run: npm run build:binaries

- name: Install jq
run: sudo apt-get install jq

- name: Get the version from package.json
run: |
export VERSION_TAG=$(jq -r '.version' package.json)
echo "VERSION_TAG=$VERSION_TAG" >> $GITHUB_ENV
echo "RELEASING VERSION $VERSION_TAG"

- name: Create Release
id: create_release
if: github.ref == 'refs/heads/main'
uses: actions/create-release@v1
with:
tag_name: ${{ env.VERSION_TAG }}
release_name: v${{ env.VERSION_TAG }}
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Linux Binary (x64)
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bin/seam-linux-x64
asset_name: seam-linux-x64-${{ env.VERSION_TAG }}
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload MacOS Binary (x64)
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bin/seam-macos-x64
asset_name: seam-macos-x64-${{ env.VERSION_TAG }}
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload MacOS Binary (arm64)
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bin/seam-macos-arm64
asset_name: seam-macos-arm64-${{ env.VERSION_TAG }}
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Windows Binary (x64)
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./bin/seam-win-x64.exe
asset_name: seam-win-x64-${{ env.VERSION_TAG }}
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}
@seamapi:registry=https://registry.npmjs.org/
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"cli": "tsx ./cli.ts",
"build": "tsup",
"postbuild": "ncc build ./dist/cli.cjs -o ./bin && mv ./bin/index.cjs ./bin/seam.cjs",
"build:binaries": "pkg --out-path bin ./bin/seam.cjs",
"build:binaries": "pkg -t node18-macos-arm64,node18-win-x64,node18-linux-x64,node18-macos-x64 --out-path bin ./bin/seam.cjs",
"build:binaries:mac": "pkg --out-path bin -t node18-macos-arm64 ./bin/seam.cjs",
"format": "prettier --write --ignore-path .gitignore .",
"typecheck": "tsc --noEmit"
Expand Down
Loading