mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2025-08-15 22:14:56 +02:00
![dependabot[bot]](/assets/img/avatar_default.png)
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>
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
name: infrastructure
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "master"
|
|
- "dev"
|
|
paths-ignore:
|
|
- "**/README.md"
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
schedule:
|
|
- cron: "0 9 * * 2" # every tuesday at 9:00 https://crontab.guru/#0_7_*_*_1
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
image:
|
|
name: infrastructure
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: "Checkout Code"
|
|
uses: actions/checkout@v5
|
|
with:
|
|
submodules: "recursive"
|
|
fetch-depth: 0
|
|
- name: "Check compose"
|
|
run: make check
|
|
- name: "Update server image"
|
|
run: make image-update
|
|
- name: "Build server"
|
|
run: make build
|
|
# - name: "Start server"
|
|
# run: make start
|
|
- name: "Logs server"
|
|
run: make logs
|
|
- name: "State server"
|
|
run: make state
|
|
- name: "Stop server"
|
|
run: make stop
|
|
- name: "Down server"
|
|
run: make down
|
|
- name: "Clean server"
|
|
run: make clean
|
|
- name: "Purge server"
|
|
run: make purge |