go.mod, actions: use mkctr to build multi-arch builds #154
Workflow file for this run
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@v3 | |
- uses: cachix/install-nix-action@v18 | |
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: | | |
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@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.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: | | |
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 | |