gateway: fix ip time plugin doesn't work #14
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: Publish rust gateway docker image | |
on: | |
push: | |
paths: | |
- "gateway/spacegate/**" | |
- ".github/workflows/space-gateway-docker-push.yml" | |
jobs: | |
push_to_registry: | |
name: Push docker image to registry | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Init rust envrionment | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Cache rust | |
uses: Swatinem/rust-cache@v2 | |
- name: Build rust | |
run: cargo build --release --bin bios-spacegate | |
- name: Copy binary to workspace | |
run: cp ./target/release/bios-spacegate ./gateway/spacegate/ | |
- name: Build and push Docker image to dockerhub | |
uses: mr-smithers-excellent/docker-build-push@v5 | |
with: | |
directory: gateway/spacegate | |
dockerfile: gateway/spacegate/Dockerfile | |
registry: docker.io | |
image: ecfront/bios-spacegate | |
tags: latest | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |