Bump diesel from 2.1.0 to 2.2.3 #92
Workflow file for this run
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
#- | |
# GitHub Action for Docker Builds | |
# Default script added 2023-06-02 | |
# | |
name: 'Docker Image CI' | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
- 'banjofox/*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) |