add new ownable #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NFT Paris Ownables demo by LTO Network | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
ownables: | |
strategy: | |
matrix: | |
package: | |
- antenna | |
- armor | |
- car | |
- cookie | |
- paint | |
- potion | |
- robot | |
- speakers | |
- storiedApes | |
- verticalFlippedApes | |
- taytay | |
- watch | |
concurrency: ci-${{ github.ref }}-${{ matrix.package }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache Ownable build files | |
id: cache-ownables | |
uses: actions/cache@v3 | |
with: | |
key: ownables-cargo-${{matrix.package}} | |
path: | | |
ownables/${{matrix.package}}/Cargo.lock | |
ownables/${{matrix.package}}/target | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Setup wasm-pack | |
uses: jetli/[email protected] | |
- name: Build | |
run: npm run ownables:build --package=${{ matrix.package }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: "${{matrix.package}}" | |
path: "ownables/${{matrix.package}}.zip" | |
wallet: | |
concurrency: ci-${{ github.ref }} | |
needs: ownables | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: NPM Install | |
run: npm ci | |
- name: Download Ownables packages | |
uses: actions/download-artifact@v3 | |
with: | |
path: ownables | |
- name: Copy Ownables packages | |
run: | | |
mkdir public/ownables | |
cp ownables/**/*.zip public/ownables | |
- name: Build | |
env: | |
REACT_APP_OWNABLE_EXAMPLES_URL: /ownables | |
run: npm run build | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: build |