mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 07:58:15 -05:00
Update build-binaries.yml
This commit is contained in:
46
.github/workflows/build-binaries.yml
vendored
46
.github/workflows/build-binaries.yml
vendored
@@ -1,17 +1,15 @@
|
||||
name: Build Binaries
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
pull_request:
|
||||
branches:
|
||||
- daniel/infisical-binary
|
||||
# pull_request:
|
||||
# branches:
|
||||
# - daniel/infisical-binary
|
||||
|
||||
push:
|
||||
branches:
|
||||
- daniel/infisical-binary
|
||||
# branches:
|
||||
# - daniel/infisical-binary
|
||||
|
||||
# run for standalone releases
|
||||
# run for standalone releases
|
||||
tags:
|
||||
- "infisical-standalone/v*.*.*"
|
||||
|
||||
@@ -36,20 +34,20 @@ jobs:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# - name: Extract version from tag
|
||||
# id: extract_version
|
||||
# run: |
|
||||
# # Get the tag name
|
||||
# TAG_NAME=$(git describe --tags)
|
||||
# # Extract the version part
|
||||
# VERSION=${TAG_NAME#infisical-standalone/v}
|
||||
# echo "Extracted version is $VERSION"
|
||||
# # Set the version as an output
|
||||
# echo "::set-output name=version::$VERSION"
|
||||
- name: Extract version from tag
|
||||
id: extract_version
|
||||
run: |
|
||||
# Get the tag name
|
||||
TAG_NAME=$(git describe --tags)
|
||||
# Extract the version part
|
||||
VERSION=${TAG_NAME#infisical-standalone/v}
|
||||
echo "Extracted version is $VERSION"
|
||||
# Set the version as an output
|
||||
echo "::set-output name=version::$VERSION"
|
||||
|
||||
# - name: Version extration test
|
||||
# run: |
|
||||
# echo "The extracted version is ${{ steps.extract_version.outputs.version }}"
|
||||
- name: Version extration test
|
||||
run: |
|
||||
echo "The extracted version is ${{ steps.extract_version.outputs.version }}"
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
@@ -72,7 +70,7 @@ jobs:
|
||||
working-directory: ./backend
|
||||
|
||||
- name: Package into node binary
|
||||
run: pkg --no-bytecode --public-packages "*" --public --target ${{ matrix.target }}-${{ matrix.arch }} --output ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }} .
|
||||
run: pkg --no-bytecode --public-packages "*" --public --compress Brotli --target ${{ matrix.target }}-${{ matrix.arch }} --output ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }} .
|
||||
working-directory: ./backend
|
||||
|
||||
- name: List files
|
||||
@@ -84,9 +82,9 @@ jobs:
|
||||
- name: Publish to Cloudsmith (Linux)
|
||||
working-directory: ./backend
|
||||
if: matrix.os == 'linux'
|
||||
run: cloudsmith push raw infisical/infisical-standalone ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }} --republish --no-wait-for-sync --version 0.0.3 --api-key ${{ secrets.CLOUDSMITH_API_KEY }}
|
||||
run: cloudsmith push raw infisical/infisical-standalone ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }} --republish --no-wait-for-sync --version ${{ steps.extract_version.outputs.version }} --api-key ${{ secrets.CLOUDSMITH_API_KEY }}
|
||||
|
||||
- name: Publish to Cloudsmith (Windows)
|
||||
working-directory: ./backend
|
||||
if: matrix.os == 'win'
|
||||
run: cloudsmith push raw infisical/infisical-standalone ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }}.exe --republish --no-wait-for-sync --version 0.0.3 --api-key ${{ secrets.CLOUDSMITH_API_KEY }}
|
||||
run: cloudsmith push raw infisical/infisical-standalone ./binary/infisical-${{ matrix.os }}-${{ matrix.arch }}.exe --republish --no-wait-for-sync --version ${{ steps.extract_version.outputs.version }} --api-key ${{ secrets.CLOUDSMITH_API_KEY }}
|
||||
|
||||
Reference in New Issue
Block a user