diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f27fe16..e62cd5b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -70,15 +70,15 @@ jobs: - name: Compress SDK folder run: | for language in nodejs python dotnet go; do - tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} . + tar -zcf sdk/${{ language }}.tar.gz -C sdk/${{ language }} . done - name: Upload artifacts run: | for language in nodejs python dotnet go; do uses: actions/upload-artifact@v4 with: - name: ${{ matrix.language }}-sdk.tar.gz - path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz + name: ${{ language }}-sdk.tar.gz + path: ${{ github.workspace}}/sdk/${{ language }}.tar.gz done - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@release/v1