Skip to content

Create docker.yml

Create docker.yml #4

Workflow file for this run

name: Rust
on:
push:
tags:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- uses: ncipollo/release-action@v1
with:
artifacts: "target/release/typesense-prometheus-exporter"