build(deps): bump micromatch from 4.0.7 to 4.0.8 (#65) #161
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: "Nix build" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Basic CLI and web build" | |
run: | | |
nix build .#tclip .#tclipd | |
- name: "Docker image build (dry run)" | |
run: | | |
nix develop --command go run github.com/tailscale/mkctr --gopaths="./cmd/tclipd:/bin/tclipd" --tags="latest" --base="gcr.io/distroless/static" --repos=ghcr.io/tailscale-dev/tclip --ldflags="-w -s" -- /bin/tclipd | |
- name: "docker login" | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
if: "github.event_name == 'push' && github.ref_name == 'main'" | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Docker image push" | |
if: "github.event_name == 'push' && github.ref_name == 'main'" | |
run: | | |
nix develop --command go run github.com/tailscale/mkctr --gopaths="./cmd/tclipd:/bin/tclipd" --tags="latest" --base="gcr.io/distroless/static" --repos=ghcr.io/tailscale-dev/tclip --push --ldflags="-w -s" -- /bin/tclipd | |
- name: "Portable service build" | |
run: | | |
nix build .#portable-service | |
mkdir -p var | |
cp ./result/*.raw ./var | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: portable-service | |
path: ./var/*.raw | |