diff --git a/.github/workflows/snap.yaml b/.github/workflows/snap.yaml index c0963b1..ad7bb12 100644 --- a/.github/workflows/snap.yaml +++ b/.github/workflows/snap.yaml @@ -15,11 +15,6 @@ jobs: runs-on: ubuntu-latest outputs: snap-file: ${{ steps.build-snap.outputs.snap }} - strategy: - matrix: - architecture: - - linux/amd64 - - linux/arm64 steps: - uses: actions/checkout@v2 - uses: snapcore/action-build@v1 @@ -38,23 +33,3 @@ jobs: with: name: micro-ros-agent-snap path: ${{ steps.build-snap.outputs.snap }} - - publish: - if: github.ref == 'refs/heads/foxy' || startsWith(github.ref, 'refs/tags/') - runs-on: ubuntu-latest - needs: build - strategy: - matrix: - architecture: - - linux/amd64 - - linux/arm64 - steps: - - uses: actions/download-artifact@v3 - with: - name: micro-ros-agent-snap - path: . - - uses: snapcore/action-publish@v1 - with: - store_login: ${{ secrets.STORE_LOGIN }} - snap: ${{needs.build.outputs.snap-file}} - release: ${{ startsWith(github.ref, 'refs/tags/') && 'candidate' || 'edge'}}