fix: links to open first channel in sidebar and onboarding checklist #165
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: Multiplatform Docker build & push | |
on: | |
push: | |
jobs: | |
build: | |
env: | |
REGISTRY: ghcr.io | |
IMAGENAME: ${{ github.event.repository.name }} | |
TAG: ${{ github.ref_name }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out code | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "./go.mod" | |
- name: Run tests | |
run: mkdir frontend/dist && touch frontend/dist/tmp && go test -race ./... | |
- name: Docker build | |
if: github.actor != 'dependabot[bot]' | |
uses: mr-smithers-excellent/docker-build-push@v6 | |
id: build | |
with: | |
image: ${{ env.IMAGENAME }} | |
registry: ${{ env.REGISTRY }} | |
multiPlatform: true | |
platform: linux/amd64,linux/arm64 | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
addLatest: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
buildArgs: TAG=${{ env.TAG }} |