@@ -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
0 commit comments