Skip to content

Commit

Permalink
Debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Weichert committed Sep 20, 2023
1 parent a3a236a commit 9655ec4
Show file tree
Hide file tree
Showing 24 changed files with 93 additions and 87 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ jobs:
TAGGED_PACKAGES+=("{\"name\":\"$pkg_name\",\"tag\":\"$pkg_tag\",\"location\":\"$pkg_location\"}")
TAGGED_PACKAGES_JSON="[$(IFS=,; echo "${TAGGED_PACKAGES[*]}")]"
done
echo "taggedPackages=$TAGGED_PACKAGES_JSON" >> "$GITHUB_OUTPUT"
echo $TAGGED_PACKAGES_JSON
echo "taggedPackages=$TAGGED_PACKAGES_JSON" >> "$GITHUB_OUTPUT"
# Publish NPM packages to Github Packages
publish-packages:
Expand All @@ -218,6 +218,12 @@ jobs:
with:
node-version: lts/gallium
cache: "npm"

- name: Debug matrix variables
run: echo "PACKAGE_NAME=${{ matrix.package.name }}" && echo "PACKAGE_TAG=${{ matrix.package.tag }}" && echo "PACKAGE_LOCATION=${{ matrix.package.location }}"

- name: List env variables
run: env

# Publish packages
- name: Publish to npm
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.39.27",
"version": "0.39.28",
"packages": [
"taqueria-protocol",
"taqueria-plugin*",
Expand Down
86 changes: 43 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/root",
"version": "0.39.27",
"version": "0.39.28",
"description": "An easy to use opinionated tool for building, testing, and deploying Tezos software",
"main": "index.ts",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions taqueria-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/analytics",
"version": "0.39.27",
"version": "0.39.28",
"description": "A TypeScript SDK submitting events for Taqueria activity",
"main": "./index.js",
"source": "./index.ts",
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"homepage": "https://github.com/pinnacle-labs/taqueria#readme",
"dependencies": {
"@taqueria/protocol": "^0.39.27",
"@taqueria/protocol": "^0.39.28",
"node-machine-id-xz": "^1.0.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions taqueria-plugin-archetype/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-archetype",
"version": "0.39.27",
"version": "0.39.28",
"description": "A taqueria plugin for compiling Archetype smart contracts",
"targets": {
"default": {
Expand Down Expand Up @@ -40,7 +40,7 @@
},
"homepage": "https://github.com/pinnacle-labs/taqueria#readme",
"dependencies": {
"@taqueria/node-sdk": "^0.39.27",
"@taqueria/node-sdk": "^0.39.28",
"fast-glob": "^3.3.1",
"ts-pattern": "^5.0.5"
},
Expand Down
4 changes: 2 additions & 2 deletions taqueria-plugin-contract-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-contract-types",
"version": "0.39.27",
"version": "0.39.28",
"main": "index.cjs",
"module": "index.js",
"source": "index.ts",
Expand Down Expand Up @@ -34,7 +34,7 @@
"typescript": "^5.2.2"
},
"dependencies": {
"@taqueria/node-sdk": "^0.39.27",
"@taqueria/node-sdk": "^0.39.28",
"@taquito/michel-codec": "^17.3.1",
"@taquito/signer": "^17.3.1",
"@taquito/taquito": "^17.3.1",
Expand Down
4 changes: 2 additions & 2 deletions taqueria-plugin-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-core",
"version": "0.39.27",
"version": "0.39.28",
"description": "A taqueria plugin for core tasks",
"targets": {
"default": {
Expand Down Expand Up @@ -43,7 +43,7 @@
"typescript": "^5.2.2"
},
"dependencies": {
"@taqueria/node-sdk": "^0.39.27"
"@taqueria/node-sdk": "^0.39.28"
},
"tsup": {
"entry": [
Expand Down
6 changes: 3 additions & 3 deletions taqueria-plugin-flextesa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-flextesa",
"version": "0.39.27",
"version": "0.39.28",
"description": "A plugin for Taqueria providing local sandbox capabilities built on Flextesa",
"keywords": [
"taqueria",
Expand Down Expand Up @@ -34,8 +34,8 @@
"directory": "taqueria-plugin-flextesa"
},
"dependencies": {
"@taqueria/node-sdk": "^0.39.27",
"@taqueria/protocol": "^0.39.27",
"@taqueria/node-sdk": "^0.39.28",
"@taqueria/protocol": "^0.39.28",
"async-retry": "^1.3.3",
"fast-glob": "^3.2.12",
"portfinder": "^1.0.32",
Expand Down
Loading

0 comments on commit 9655ec4

Please sign in to comment.