Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Discovery-Labs/dCompass-Gitbook-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: gitcoindao/dCompass-Gitbook-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 5 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 26, 2022

  1. Updating action

    kammerdiener committed Jan 26, 2022
    Copy the full SHA
    11f0979 View commit details
  2. Bumping node version

    kammerdiener committed Jan 26, 2022
    Copy the full SHA
    46c30cb View commit details
  3. Adding in node_modules

    kammerdiener committed Jan 26, 2022
    Copy the full SHA
    b140775 View commit details
  4. Switch to composite

    kammerdiener committed Jan 26, 2022
    Copy the full SHA
    dd1aed5 View commit details
  5. Fixing path

    kammerdiener committed Jan 26, 2022
    Copy the full SHA
    574648a View commit details
Showing with 11,138 additions and 2,774 deletions.
  1. +1 −1 .gitignore
  2. +17 −2 action.yml
  3. +8,322 −0 package-lock.json
  4. +2,798 −2,771 yarn.lock
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -16,5 +16,5 @@ bin-release/
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
# should NOT be excluded as they contain compiler settings and other important
# information for Eclipse / Flash Builder.
node_modules
# node_modules
.env
19 changes: 17 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
name: "upload-files-to-web3-storage"
description: "Deploy all the files through Web3 Storage"
inputs:
DID_KEY:
description: 'DID_KEY'
required: true
WEB3STORAGE_TOKEN:
description: 'WEB3STORAGE_TOKEN'
required: true
CERAMIC_NODE_API_URL:
description: 'CERAMIC_NODE_API_URL'
required: true
DCOMPASS_PROJECT_ID:
description: 'DCOMPASS_PROJECT_ID'
required: true
runs:
using: "docker"
image: "Dockerfile"
using: "composite"
steps:
- run: cd ${{github.action_path}} && npm install && node --experimental-json-modules index.js
shell: bash
Loading