Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/maven-settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<settings>
<servers>
<server>
<id>github</id>
<username>${env.GITHUB_ACTOR}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
</settings>
8 changes: 8 additions & 0 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,14 @@ jobs:
packages/wasm-ton/dist/
retention-days: 1

- name: Upload wasm-privacy-coin build artifacts
if: inputs.upload-artifacts
uses: actions/upload-artifact@v4
with:
name: wasm-privacy-coin-build
path: packages/wasm-privacy-coin/dist/
retention-days: 1

# This job provides a stable "test / Test" status check for branch protection.
# It runs after all other jobs complete successfully.
gate:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
permissions:
id-token: write
contents: write
packages: write

steps:
- name: Checkout repository
Expand Down Expand Up @@ -60,6 +61,12 @@ jobs:
name: wasm-ton-build
path: packages/wasm-ton/

- name: Download wasm-privacy-coin build artifacts
uses: actions/download-artifact@v4
with:
name: wasm-privacy-coin-build
path: packages/wasm-privacy-coin/dist/

- name: Setup Node
uses: actions/setup-node@v4
with:
Expand All @@ -75,8 +82,18 @@ jobs:
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

- name: Setup JDK 17 (for wasm-privacy-coin Maven deploy)
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: "17"

- name: Install dependencies
run: npm ci --workspaces --include-workspace-root

- name: Release (multi-semantic-release)
run: npx multi-semantic-release --ignore-private-packages
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_ACTOR: ${{ github.actor }}
Loading
Loading