Skip to content

Commit

Permalink
troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasKoehneckeAA committed Apr 10, 2024
1 parent abf42f5 commit 2929c69
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/artifactory.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Blueprint for Github Actions Usage (Push to PyPi Repository)
name: Artifactory Deployment of PyPi and trace-viewer

on:
push: {}
Expand All @@ -19,7 +19,9 @@ jobs:
run: |
ID_TOKEN=$(curl -sLS -H "User-Agent: actions/oidc-client" -H "Authorization: Bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" \
"${ACTIONS_ID_TOKEN_REQUEST_URL}&audience=https://alephalpha.jfrog.io" | jq .value | tr -d '"')
echo "ID_TOKEN=${ID_TOKEN}" >> $GITHUB_ENV
echo "ID_TOKEN=${ID_TOKEN}" >> "$GITHUB_ENV"
echo $GITHUB_ENV
cat $GITHUB_ENV
- name: Get Jfrog Access Token with Github Identity Token
env:
ID_TOKEN: ${{ env.ID_TOKEN }}
Expand All @@ -32,6 +34,9 @@ jobs:
"{\"grant_type\": \"urn:ietf:params:oauth:grant-type:token-exchange\", \"subject_token_type\":\"urn:ietf:params:oauth:token-type:id_token\", \"subject_token\": \"$ID_TOKEN\", \"provider_name\": \"github\"}" \
| jq .access_token -r)
echo "JFROG_ACCESS_TOKEN=${JFROG_ACCESS_TOKEN}" >> $GITHUB_ENV
echo $GITHUB_ENV
cat $GITHUB_ENV
echo $ID_TOKEN
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v5
Expand All @@ -47,6 +52,9 @@ jobs:
env:
JFROG_ACCESS_TOKEN: ${{ env.JFROG_ACCESS_TOKEN }}
run: |
echo $GITHUB_ENV
cat $GITHUB_ENV
echo $JFROG_ACCESS_TOKEN
poetry build
poetry config repositories.artifactory $ARTIFACTORY_URL/artifactory/api/pypi/$ARTIFACTORY_PYPI_REPOSITORY
JFROG_ACCESS_TOKEN_SUBJECT=$(echo $JFROG_ACCESS_TOKEN | awk -F'.' '{print $2}' | sed 's/.\{1,3\}$/&==/' | base64 -d | jq '.sub' -r)
Expand Down

0 comments on commit 2929c69

Please sign in to comment.