Update build-binaries.yml #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Binaries and Deploy | |
on: | |
push: | |
defaults: | |
run: | |
working-directory: ./backend | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
arch: [x64, arm64] | |
os: [linux, win] | |
include: | |
- os: linux | |
target: node18-linux | |
- os: win | |
target: node18-win | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Extract version from tag | |
id: extract_version | |
run: | | |
if [[ $GITHUB_REF == refs/tags/* ]]; then | |
VERSION=${GITHUB_REF#refs/tags/infisical-standalone/v} | |
else | |
VERSION=$(git rev-parse --short HEAD) | |
fi | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install pkg | |
run: npm install -g @yao-pkg/pkg | |
- name: Install dependencies (backend) | |
run: npm install | |
- name: Install dependencies (frontend) | |
run: npm install --prefix ../frontend | |
- name: Prerequisites for pkg | |
run: npm run binary:build | |
- name: Package into node binary | |
run: pkg --no-bytecode --public-packages "*" --public --target ${{ matrix.target }}-${{ matrix.arch }} --output ./binary/infisical-standalone . | |
# Set up .deb package structure (Debian/Ubuntu only) | |
- name: Set up .deb package structure | |
if: matrix.os == 'linux' | |
run: | | |
mkdir -p infisical-standalone/DEBIAN | |
mkdir -p infisical-standalone/usr/local/bin | |
cp ./binary/infisical-standalone infisical-standalone/usr/local/bin/ | |
chmod +x infisical-standalone/usr/local/bin/infisical-standalone | |
- name: Create control file | |
if: matrix.os == 'linux' | |
run: | # Version: Is hardcoded to 3.0.0 (should be steps.extract_version.outputs.versio) | |
cat <<EOF > infisical-standalone/DEBIAN/control | |
Package: infisical-standalone | |
Version: 3.0.0 | |
Section: base | |
Priority: optional | |
Architecture: ${{ matrix.arch == 'x64' && 'amd64' || matrix.arch }} | |
Maintainer: Infisical <[email protected]> | |
Description: Infisical standalone executable (app.infisical.com) | |
EOF | |
# Build .deb file (Debian/Ubunutu only) | |
- name: Build .deb package | |
if: matrix.os == 'linux' | |
run: | | |
dpkg-deb --build infisical-standalone | |
mv infisical-standalone.deb ./binary/infisical-standalone-${{matrix.arch}}.deb | |
- uses: actions/setup-python@v4 | |
- run: pip install --upgrade cloudsmith-cli | |
# Publish .deb file to Cloudsmith (Debian/Ubuntu only) | |
- name: Publish to Cloudsmith (Linux) | |
if: matrix.os == 'linux' | |
working-directory: ./backend | |
run: cloudsmith push deb --republish --no-wait-for-sync --api-key=${{ secrets.CLOUDSMITH_API_KEY }} infisical/infisical-standalone/any-distro/any-version ./binary/infisical-standalone-${{ matrix.arch }}.deb | |
# Publish .exe file to Cloudsmith (Windows only) | |
- name: Publish to Cloudsmith (Windows) | |
if: matrix.os == 'win' | |
working-directory: ./backend | |
run: cloudsmith push raw infisical/infisical-standalone ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }}.exe --republish --no-wait-for-sync --version 3.0.0 --api-key ${{ secrets.CLOUDSMITH_API_KEY }} |