Bump native-tls from 0.2.12 to 0.2.13 #14
Workflow file for this run
This file contains hidden or 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: "Build & publish binaries" | |
on: | |
push | |
jobs: | |
build-binaries: | |
name: Build & publish binaries | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v12 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- run: nix --extra-experimental-features nix-command --extra-experimental-features flakes build '.#static' | |
- name: Upload syslog-client | |
uses: actions/upload-artifact@v4 | |
with: | |
name: syslog-client | |
path: result/bin/syslog-client | |
if-no-files-found: error | |
- name: Upload syslog-server | |
uses: actions/upload-artifact@v4 | |
with: | |
name: syslog-server | |
path: result/bin/syslog-server | |
if-no-files-found: error |