mirror of
https://github.com/tiennm99/koyeb-example-spring-boot.git
synced 2026-06-17 12:48:41 +00:00
29 lines
697 B
YAML
29 lines
697 B
YAML
name: Build and deploy the application to Koyeb
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '55 8 * * *'
|
|
push:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
deploy:
|
|
concurrency:
|
|
group: "${{ github.ref_name }}"
|
|
cancel-in-progress: true
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install and configure the Koyeb CLI
|
|
uses: koyeb-community/koyeb-actions@v2
|
|
with:
|
|
api_token: "${{ secrets.KOYEB_EXAMPLES_APPS_TOKEN }}"
|
|
|
|
- name: Build and deploy the application
|
|
uses: koyeb/action-git-deploy@v1
|
|
with:
|
|
app-name: spring-boot-${{ github.ref_name }}
|
|
service-ports: "8000:http"
|
|
service-routes: "/:8000"
|
|
skip-cache: true
|