Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
golddydev authored Nov 7, 2024
2 parents ffc4ea7 + a578030 commit a60e79f
Show file tree
Hide file tree
Showing 5 changed files with 152 additions and 1,640 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: handles-marketplace-contracts
on:
push:
branches:
- master
jobs:
deploy:
name: Deploying from ${{ github.ref_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1

- name: Publish ${{ github.workflow }}
id: publish
env:
DEPLOYMENT_ACCESS_TOKEN: ${{ secrets.DEPLOYMENT_ACCESS_TOKEN }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
VARS_CONTEXT: ${{ toJson(vars) }}
GITHUB_CONTEXT: ${{ toJson(github) }}
DEPLOYMENT_TYPE: npm-publish
NODE_VERSION: 20
IS_PUBLIC: true
run: |
set -eu
curl -H "Authorization: Bearer ${DEPLOYMENT_ACCESS_TOKEN}" https://raw.githubusercontent.com/koralabs/adahandle-deployments/master/common/main.sh -o main.sh
chmod +x main.sh && ./main.sh
Loading

0 comments on commit a60e79f

Please sign in to comment.