name: Create Release on: push: tags: - 'v*' workflow_dispatch: jobs: create-release: runs-on: ubuntu-latest strategy: fail-fast: false matrix: GO_VERSION: - 1.25.5 steps: - name: Checkout uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 - name: Set up Go uses: actions/setup-go@v6 with: go-version: ${{ matrix.GO_VERSION }} - name: APT Install id: aptInstall run: | sudo dpkg --add-architecture arm64 sudo rm -f /etc/apt/sources.list.d/ubuntu.sources # Create proper deb822 format sources for both amd64 and arm64 cat <