Files
CurrenciCombo/.github/workflows/release.yml
dependabot[bot] 582ef0ac23 Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-06 00:13:47 +00:00

49 lines
983 B
YAML

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Build Frontend
working-directory: webapp
run: |
npm ci
npm run build
- name: Build Orchestrator
working-directory: orchestrator
run: |
npm ci
npm run build
- name: Compile Contracts
working-directory: contracts
run: |
npm ci
npm run compile
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
webapp/.next/**
orchestrator/dist/**
contracts/artifacts/**
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}