name: Build-Test-Publish run-name: Build test and publish dropshell on: [push] defaults: run: shell: bash jobs: build: strategy: matrix: platform: - linux/amd64 - linux/arm64 runs-on: ${{ matrix.platform }} steps: - name: Checkout uses: actions/checkout@v4 - name: Login to Gitea uses: docker/login-action@v3 with: registry: gitea.jde.nz username: DoesntMatter password: ${{ secrets.DOCKER_PUSH_TOKEN }} - name: Build run: | ./build.sh - name: Run Tests run: | ./test.sh - name: Publish as Latest run: | # Only publish on main branch if [ "$GITHUB_REF" = "refs/heads/main" ]; then SOS_WRITE_TOKEN=${{ secrets.SOS_WRITE_TOKEN }} \ ./publish.sh fi