git.delta.rocks / unique-network / refs/commits / d16d7f8bc42e

difftreelog

push ready polkadot-types workflow

Unique2022-12-22parent: #d50b1a1.patch.diff
in: master

3 files changed

modified.github/workflows/polkadot-types.ymldiffbeforeafterboth
--- a/.github/workflows/polkadot-types.yml
+++ b/.github/workflows/polkadot-types.yml
@@ -3,15 +3,15 @@
 name: Polkadot types
 
 # Triger: only call from main workflow(re-usable workflows)
+on:
+  workflow_call:
+  # Allows you to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
 # on:
-#   workflow_call:
-#   # Allows you to run this workflow manually from the Actions tab
-#   workflow_dispatch:
-
-on:
-  pull_request:
-    branches: [ 'develop' ]
-    types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]
+#   pull_request:
+#     branches: [ 'develop' ]
+#     types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]
 
 
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
@@ -29,12 +29,12 @@
     strategy:
       matrix:
         include:
-          # - network: sapphire
-          #   usage: "--sapphire"
-          # - network: "opal"
-          #   usage: ""
-          # - network: "quartz"
-          #   usage: ""
+          - network: sapphire
+            usage: "--sapphire"
+          - network: "opal"
+            usage: ""
+          - network: "quartz"
+            usage: ""
           - network: "unique"
             usage: ""
 
modified.github/workflows/schedule-trigger-for-develop-build.ymldiffbeforeafterboth
--- a/.github/workflows/schedule-trigger-for-develop-build.yml
+++ b/.github/workflows/schedule-trigger-for-develop-build.yml
@@ -1,8 +1,8 @@
 name: schedule-trigger-for-develop-build
 on:
   # update the branch ci/develop-scheduler every night
-  schedule:
-    - cron: '0 1 * * *'
+  # schedule:
+  #   - cron: '0 1 * * *'
   # or update the branch manually
   workflow_dispatch:
   # pull_request:
modifiedtests/scripts/generate_types_package.shdiffbeforeafterboth
6TEMPLATE=$DIR/types_template6TEMPLATE=$DIR/types_template
7GIT_REPO=git@github.com:UniqueNetwork/unique-types-js.git7GIT_REPO=git@github.com:UniqueNetwork/unique-types-js.git
8
9# git config user.name "Unique"
10# git config user.email "github-actions@usetech.com"
118
12. $DIR/functions.sh9. $DIR/functions.sh
1310