mirror of
https://github.com/Infisical/infisical.git
synced 2025-08-05 07:30:33 +00:00
requested changes temp: team debugging Revert "temp: team debugging" This reverts commit 6533d731f829d79f41bf2f7209e3a636553792b1. feat: hsm support Update hsm-service.ts feat: hsm support
116 lines
5.2 KiB
YAML
116 lines
5.2 KiB
YAML
name: Release standalone docker image
|
|
on:
|
|
push:
|
|
tags:
|
|
- "infisical/v*.*.*-postgres"
|
|
|
|
jobs:
|
|
infisical-tests:
|
|
name: Run tests before deployment
|
|
# https://docs.github.com/en/actions/using-workflows/reusing-workflows#overview
|
|
uses: ./.github/workflows/run-backend-tests.yml
|
|
|
|
infisical-standalone:
|
|
name: Build infisical standalone image postgres
|
|
runs-on: ubuntu-latest
|
|
needs: [infisical-tests]
|
|
steps:
|
|
- name: Extract version from tag
|
|
id: extract_version
|
|
run: echo "::set-output name=version::${GITHUB_REF_NAME#infisical/}"
|
|
- name: ☁️ Checkout source
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 📦 Install dependencies to test all dependencies
|
|
run: npm ci --only-production
|
|
working-directory: backend
|
|
- name: version output
|
|
run: |
|
|
echo "Output Value: ${{ steps.version.outputs.major }}"
|
|
echo "Output Value: ${{ steps.version.outputs.minor }}"
|
|
echo "Output Value: ${{ steps.version.outputs.patch }}"
|
|
echo "Output Value: ${{ steps.version.outputs.version }}"
|
|
echo "Output Value: ${{ steps.version.outputs.version_type }}"
|
|
echo "Output Value: ${{ steps.version.outputs.increment }}"
|
|
- name: Save commit hashes for tag
|
|
id: commit
|
|
uses: pr-mpt/actions-commit-hash@v2
|
|
- name: 🔧 Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: 🐋 Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Set up Depot CLI
|
|
uses: depot/setup-action@v1
|
|
- name: 📦 Build backend and export to Docker
|
|
uses: depot/build-push-action@v1
|
|
with:
|
|
project: 64mmf0n610
|
|
token: ${{ secrets.DEPOT_PROJECT_TOKEN }}
|
|
push: true
|
|
context: .
|
|
tags: |
|
|
infisical/infisical:latest-postgres
|
|
infisical/infisical:${{ steps.commit.outputs.short }}
|
|
infisical/infisical:${{ steps.extract_version.outputs.version }}
|
|
platforms: linux/amd64,linux/arm64
|
|
file: Dockerfile.standalone-infisical
|
|
build-args: |
|
|
POSTHOG_API_KEY=${{ secrets.PUBLIC_POSTHOG_API_KEY }}
|
|
INFISICAL_PLATFORM_VERSION=${{ steps.extract_version.outputs.version }}
|
|
|
|
infisical-fips-standalone:
|
|
name: Build infisical standalone image postgres
|
|
runs-on: ubuntu-latest
|
|
needs: [infisical-tests]
|
|
steps:
|
|
- name: Extract version from tag
|
|
id: extract_version
|
|
run: echo "::set-output name=version::${GITHUB_REF_NAME#infisical/}"
|
|
- name: ☁️ Checkout source
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 📦 Install dependencies to test all dependencies
|
|
run: npm ci --only-production
|
|
working-directory: backend
|
|
- name: version output
|
|
run: |
|
|
echo "Output Value: ${{ steps.version.outputs.major }}"
|
|
echo "Output Value: ${{ steps.version.outputs.minor }}"
|
|
echo "Output Value: ${{ steps.version.outputs.patch }}"
|
|
echo "Output Value: ${{ steps.version.outputs.version }}"
|
|
echo "Output Value: ${{ steps.version.outputs.version_type }}"
|
|
echo "Output Value: ${{ steps.version.outputs.increment }}"
|
|
- name: Save commit hashes for tag
|
|
id: commit
|
|
uses: pr-mpt/actions-commit-hash@v2
|
|
- name: 🔧 Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: 🐋 Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Set up Depot CLI
|
|
uses: depot/setup-action@v1
|
|
- name: 📦 Build backend and export to Docker
|
|
uses: depot/build-push-action@v1
|
|
with:
|
|
project: 64mmf0n610
|
|
token: ${{ secrets.DEPOT_PROJECT_TOKEN }}
|
|
push: true
|
|
context: .
|
|
tags: |
|
|
infisical/infisical-fips:latest-postgres
|
|
infisical/infisical-fips:${{ steps.commit.outputs.short }}
|
|
infisical/infisical-fips:${{ steps.extract_version.outputs.version }}
|
|
platforms: linux/amd64,linux/arm64
|
|
file: Dockerfile.fips.standalone-infisical
|
|
build-args: |
|
|
POSTHOG_API_KEY=${{ secrets.PUBLIC_POSTHOG_API_KEY }}
|
|
INFISICAL_PLATFORM_VERSION=${{ steps.extract_version.outputs.version }}
|