Skip to content

Commit

Permalink
Create release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TIVMOF authored Apr 22, 2024
1 parent 295f5aa commit 2ac53ea
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Release - Server

on:
workflow_dispatch:
inputs:
release-version:
description: Release Version
required: true
default: 1.0.0

run-name: 'version set to ${{ inputs.release-version }} for release'

jobs:
main:
uses: codbex/codbex-infra/.github/workflows/application-release.yaml@main
with:
application-name: online_bank
release-version: ${{ inputs.release-version }}
release-content: |
## codbex-aion - ${{ inputs.release-version }}
Dirigible Bank Server

## Deployment

```
docker run --name dirigible-bank-server \
--rm -p 8080:8080 -p 8081:8081 \
ghcr.io/tivmof/dirigible-bank-server:${{ inputs.release-version }}
```

## Access points:

- [/services/web/dirigible-bank-server/gen/](http://localhost:8080/services/web/dirigible-bank-server/gen/) - Admin Panel
secrets: inherit

0 comments on commit 2ac53ea

Please sign in to comment.