We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 553918c commit 36fa559Copy full SHA for 36fa559
README.md
@@ -22,6 +22,10 @@ This GitHub Action downloads the Fly CLI and configures package managers to use
22
name: Build with Fly Registry
23
on: [push]
24
25
+permissions:
26
+ contents: read
27
+ id-token: write
28
+
29
jobs:
30
build:
31
runs-on: ubuntu-latest
@@ -32,7 +36,7 @@ jobs:
32
36
- name: Setup Fly Registry
33
37
uses: jfrog/fly-action@v1
34
38
with:
35
- url: https://fly.example.com
39
+ url: https://<your-fly-subdomain>.jfrog.io
40
# ignore: docker,pip (optional)
41
```
42
@@ -42,6 +46,7 @@ This action only supports OIDC authentication for enhanced security. You must se
46
43
47
```yaml
44
48
permissions:
49
45
50
id-token: write # Required for OIDC authentication
51
52
0 commit comments