Skip to content

jfrog/sign-package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Example for usage

.github/workflows/create-signature.yml

name: Build python with signature

on:
    [push, workflow_dispatch]

jobs:
    build:
        runs-on: ubuntu-latest
        steps:
            - name: Checkout
              uses: actions/checkout@v2

            - name: Set up Python 3.8
              uses: actions/setup-python@v2
              with:
                  python-version: 3.8

            - name: Install dependencies
              run: |
                  python -m pip install --upgrade pip
                  pip install -r requirements.txt

            - name: Install jfrog cli
              uses: jfrog/setup-jfrog-cli@v4
              env:
                JF_URL: ${{ vars.ARTIFACTORY_URL }}
                JF_ACCESS_TOKEN: ${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}


            - name: Run Create Signature Action
              uses: ./.github/actions/create-signature
              with:
                package-name: "example-project-app"
                package-repo-name: "example-project-docker-dev-local"
                private-key: ${{ secrets.PRIVATE_KEY }}
                  

About

No description, website, or topics provided.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published