Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-java-docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Docker
name: Build Java Docker

on: [push, pull_request]

Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/build-and-push-rust-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Rust Docker

on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
IMAGENAME: ${{ github.event.repository.name }}-rust
TAG: ${{ github.ref_name }}
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Docker build
uses: mr-smithers-excellent/docker-build-push@v6
id: build
with:
directory: rust
image: ${{ env.IMAGENAME }}
dockerfile: rust/Dockerfile
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
Loading
Loading