Skip to content

Commit

Permalink
npm workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RobiNino committed Jul 9, 2024
1 parent 36e011d commit aa494bf
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "JFrog CLI Example"
on: push

permissions:
# This is required for requesting the OIDC token
id-token: write
# This is required for actions/checkout
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JFrog CLI
uses: jfrog/setup-jfrog-cli@v4
env:
# JFrog platform url (for example: https://acme.jfrog.io)
JF_URL: ${{ secrets.JF_URL }}
with:
# OIDC provider name from the OIDC integration page in the JFrog Platform
oidc-provider-name: setup-jfrog-cli

- name: Run JFrog CLI
run: |
# Ping the server
jf rt ping
# Collect environment variables for the build
cd npm-example
jf npm-config --repo-resolve npm
jf npm i

0 comments on commit aa494bf

Please sign in to comment.