Github action allowing to retrieve root ca certificate from an cfssl pki
Go to file
2024-08-25 18:36:57 +02:00
.gitignore Initial commit 2024-08-25 17:34:25 +02:00
action.yml feature: action allow to retrieve rot ca cert 2024-08-25 18:36:57 +02:00
LICENSE Initial commit 2024-08-25 17:34:25 +02:00
README.md feature: action allow to retrieve rot ca cert 2024-08-25 18:36:57 +02:00

get ca cert

Github action to retrieve root ca certificate from pki managed thanks to cfssl.

usage example

name: Main

on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: runner
    steps:
      - name: Retrieve root ca certificate
        id: get-ca-cert
        uses: RouxAntoine/get-ca-cert@master
      - run: |
          echo "${{ steps.get-ca-cert.outputs.ca-cert }}"
          echo "${{ steps.get-ca-cert.outputs.ca-cert-base64 }}"