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
36 changes: 36 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,21 @@ jobs:
id: changed-stats
with:
paths: apps/stats-dapp

- uses: marceloprado/has-changed-path@v1
id: changed-faucet
with:
paths: apps/faucet

- uses: marceloprado/has-changed-path@v1
id: changed-webbsite
with:
paths: apps/webbsite

- uses: marceloprado/has-changed-path@v1
id: changed-tangle
with:
paths: apps/tangle-website

- name: create env file for webbsite, tangle-site and faucet
run: |
Expand Down Expand Up @@ -80,4 +95,25 @@ jobs:
uses: ./.github/actions/create-release
with:
package-path: apps/stats-dapp
repo-token: ${{ secrets.REPO_TOKEN }}

- name: Release faucet
if: steps.changed-faucet.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: apps/faucet
repo-token: ${{ secrets.REPO_TOKEN }}

- name: Release webbsite
if: steps.changed-webbsite.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: apps/webbsite
repo-token: ${{ secrets.REPO_TOKEN }}

- name: Release tangle
if: steps.changed-tangle.outputs.changed == 'true'
uses: ./.github/actions/create-release
with:
package-path: apps/tangle-website
repo-token: ${{ secrets.REPO_TOKEN }}
39 changes: 39 additions & 0 deletions apps/faucet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- New feature or functionality
- New file or resource

### Changed
- Updates to existing features
- Changes to existing files or resources

### Deprecated
- Features or functionality that will be removed in future versions
- Files or resources that will be removed in future versions

### Removed
- Features or functionality that have been removed
- Files or resources that have been removed

### Fixed
- Bug fixes
- Corrections to existing files or resources

### Security
- Security-related changes, such as vulnerability patches

## [0.0.1] - 2023-05-02

### Added
- Initial UI setup and build: https://github.com/webb-tools/webb-dapp/pull/1075

[Unreleased]: https://github.com/webb-tools/webb-dapp/compare/v0.0.1...HEAD
[0.0.1]: https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.1
7 changes: 7 additions & 0 deletions apps/faucet/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "@webb-tools/faucet",
"version": "0.0.1",
"license": "APACHE-2.0",
"description": "Official Webb Faucet"
}

39 changes: 39 additions & 0 deletions apps/tangle-website/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- New feature or functionality
- New file or resource

### Changed
- Updates to existing features
- Changes to existing files or resources

### Deprecated
- Features or functionality that will be removed in future versions
- Files or resources that will be removed in future versions

### Removed
- Features or functionality that have been removed
- Files or resources that have been removed

### Fixed
- Bug fixes
- Corrections to existing files or resources

### Security
- Security-related changes, such as vulnerability patches

## [0.0.1] - 2023-05-02

### Added
- Initial Tangle webbsite release: https://github.com/webb-tools/webb-dapp/pull/1157

[Unreleased]: https://github.com/webb-tools/webb-dapp/compare/v0.0.1...HEAD
[0.0.1]: https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.1
7 changes: 7 additions & 0 deletions apps/tangle-website/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "@webb-tools/tangle-website",
"version": "0.0.1",
"license": "APACHE-2.0",
"description": "Official Tangle Network website"
}

39 changes: 39 additions & 0 deletions apps/webbsite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- New feature or functionality
- New file or resource

### Changed
- Updates to existing features
- Changes to existing files or resources

### Deprecated
- Features or functionality that will be removed in future versions
- Files or resources that will be removed in future versions

### Removed
- Features or functionality that have been removed
- Files or resources that have been removed

### Fixed
- Bug fixes
- Corrections to existing files or resources

### Security
- Security-related changes, such as vulnerability patches

## [0.0.1] - 2023-05-02

### Added
- Initial Webb webbsite release: https://github.com/webb-tools/webb-dapp/pull/1157

[Unreleased]: https://github.com/webb-tools/webb-dapp/compare/v0.0.1...HEAD
[0.0.1]: https://github.com/webb-tools/webb-dapp/releases/tag/v0.0.1
7 changes: 7 additions & 0 deletions apps/webbsite/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "@webb-tools/webbsite",
"version": "0.0.1",
"license": "APACHE-2.0",
"description": "Official Webb webbsite"
}