Github action allowing to retrieve root ca certificate from an cfssl pki
Go to file
2024-09-08 21:54:03 +02:00
.gitignore Initial commit 2024-08-25 17:34:25 +02:00
action.yml feature: add debug option to shoow retrieve root ca 2024-09-05 22:41:36 +02:00
LICENSE Initial commit 2024-08-25 17:34:25 +02:00
README.md doc: change usage example with migration to self hosted gitea 2024-09-08 21:54:03 +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: https://antoine-roux.tk/projects/actions/get-ca-cert@v1.1.0
      - run: |
          echo "${{ steps.get-ca-cert.outputs.ca-cert }}"
          echo "${{ steps.get-ca-cert.outputs.ca-cert-base64 }}"