Local telegram api (#6) #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: If it builds, it probably works. | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-telegram-bot: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the telegram-bot Docker image | |
run: docker build ./telegram-bot -t telegram-bot:$(date +%s) | |
build-job-manager: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the job-manager Docker image | |
run: docker build ./job-manager -t job-manager:$(date +%s) | |
build-pocketbase: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the pocketbase Docker image with migrations | |
run: docker build ./pocketbase -t pocketbase:$(date +%s) |