Skip to content

Functional scheduler.rs reading from toml configuration #43

Functional scheduler.rs reading from toml configuration

Functional scheduler.rs reading from toml configuration #43

Workflow file for this run

name: Build and Push Rust Docker Image
on:
push:
branches:
- rust
paths:
- 'backend/**'
- '.github/workflows/backend.yml'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to GitHub Container Registry
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ./backend
file: ./backend/Dockerfile
push: true
tags: ghcr.io/slackspace-io/slackwatch-rs:latest,ghcr.io/slackspace-io/slackwatch-rs:dev,ghcr.io/slackspace-io/slackwatch-rs:${{ github.sha }}