Skip to content

Commit c4f4cae

Browse files
Merge pull request #13 from ar-io/docs/update-action-version-to-v1.0.0
docs: pin GitHub Action examples to v1.0.0
2 parents adb027f + fad5a35 commit c4f4cae

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.claude/skills/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
npm run build
191191
192192
- name: Deploy to AR.IO
193-
uses: ar-io/ar-io-deploy@v1
193+
uses: ar-io/ar-io-deploy@v1.0.0
194194
with:
195195
deploy-key: ${{ secrets.DEPLOY_KEY }}
196196
arns-key: ${{ secrets.ARNS_KEY }}
@@ -202,7 +202,7 @@ For PR previews:
202202
203203
```yaml
204204
- name: Deploy Preview
205-
uses: ar-io/ar-io-deploy@v1
205+
uses: ar-io/ar-io-deploy@v1.0.0
206206
with:
207207
deploy-key: ${{ secrets.DEPLOY_KEY }}
208208
arns-key: ${{ secrets.ARNS_KEY }}

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Package is published as `@ar.io/deploy` on npm under the `@ar.io` org. Uses npm
9090
The repo ships a composite GitHub Action (`action.yml`) that external projects use:
9191

9292
```yaml
93-
- uses: ar-io/ar-io-deploy@v1
93+
- uses: ar-io/ar-io-deploy@v1.0.0
9494
with:
9595
deploy-key: ${{ secrets.DEPLOY_KEY }}
9696
arns-name: myapp

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ The easiest way to integrate ario-deploy into your CI/CD pipeline is using our o
372372
### Basic Usage
373373

374374
```yaml
375-
- uses: ar-io/ar-io-deploy@v1
375+
- uses: ar-io/ar-io-deploy@v1.0.0
376376
with:
377377
deploy-key: ${{ secrets.DEPLOY_KEY }} # upload key (pays for the upload)
378378
arns-key: ${{ secrets.ARNS_KEY }} # Solana ArNS authority key
@@ -409,7 +409,7 @@ jobs:
409409
run: npm run build
410410
411411
- name: Deploy Preview
412-
uses: ar-io/ar-io-deploy@v1
412+
uses: ar-io/ar-io-deploy@v1.0.0
413413
with:
414414
deploy-key: ${{ secrets.DEPLOY_KEY }}
415415
arns-key: ${{ secrets.ARNS_KEY }}
@@ -454,7 +454,7 @@ jobs:
454454
run: npm run build
455455
456456
- name: Deploy to Permaweb
457-
uses: ar-io/ar-io-deploy@v1
457+
uses: ar-io/ar-io-deploy@v1.0.0
458458
with:
459459
deploy-key: ${{ secrets.DEPLOY_KEY }}
460460
arns-key: ${{ secrets.ARNS_KEY }}
@@ -466,7 +466,7 @@ jobs:
466466

467467
```yaml
468468
- name: Deploy with ARIO on-demand
469-
uses: ar-io/ar-io-deploy@v1
469+
uses: ar-io/ar-io-deploy@v1.0.0
470470
with:
471471
deploy-key: ${{ secrets.DEPLOY_KEY }}
472472
arns-key: ${{ secrets.ARNS_KEY }}
@@ -482,7 +482,7 @@ ArNS updates run against the Solana ARIO programs. Provide the Solana ArNS autho
482482

483483
```yaml
484484
- name: Deploy and update ArNS
485-
uses: ar-io/ar-io-deploy@v1
485+
uses: ar-io/ar-io-deploy@v1.0.0
486486
with:
487487
deploy-key: ${{ secrets.DEPLOY_KEY }} # upload key
488488
arns-key: ${{ secrets.ARNS_KEY }} # Solana ArNS authority key
@@ -497,7 +497,7 @@ By default, the action caches transaction IDs to avoid re-uploading unchanged fi
497497

498498
```yaml
499499
- name: Deploy without dedupe
500-
uses: ar-io/ar-io-deploy@v1
500+
uses: ar-io/ar-io-deploy@v1.0.0
501501
with:
502502
deploy-key: ${{ secrets.DEPLOY_KEY }}
503503
deploy-folder: ./dist
@@ -508,7 +508,7 @@ You can also limit the cache size:
508508

509509
```yaml
510510
- name: Deploy with limited cache
511-
uses: ar-io/ar-io-deploy@v1
511+
uses: ar-io/ar-io-deploy@v1.0.0
512512
with:
513513
deploy-key: ${{ secrets.DEPLOY_KEY }}
514514
deploy-folder: ./dist

examples/claude-skill/deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
node-version: '20'
157157
- run: npm ci
158158
- run: npm run build
159-
- uses: ar-io/ar-io-deploy@v1
159+
- uses: ar-io/ar-io-deploy@v1.0.0
160160
with:
161161
deploy-key: ${{ secrets.DEPLOY_KEY }}
162162
arns-key: ${{ secrets.ARNS_KEY }}

0 commit comments

Comments
 (0)