Fix docker push syntax #269
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: ci | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- uses: gacts/install-hurl@v1 | |
- uses: cue-lang/[email protected] | |
- run: go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
# CUE_DEBUG_TOOLS_FLOW=true cue cmd ci | |
- run: cue cmd ci | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: | | |
test/*.log | |
test/report/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: xtemplate-amd64-linux | |
path: 'dist/xtemplate-amd64-linux/*' | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: xtemplate-amd64-darwin | |
path: 'dist/xtemplate-amd64-darwin/*' | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: xtemplate-amd64-windows | |
path: 'dist/xtemplate-amd64-windows/*' | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: 'dist/*.zip' |