We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa4936 commit 8bc8918Copy full SHA for 8bc8918
.github/workflows/release-native.yml
@@ -78,10 +78,12 @@ jobs:
78
- name: Downloading scalafmt for Docker Build
79
uses: actions/download-artifact@v4
80
with:
81
- name: scalafmt-x86_64-pc-linux
82
- path: tmp/scalafmt-docker-build # Dockerfile uses this
+ name: scalafmt-x86_64-pc-linux.zip
+ path: tmp/scalafmt-docker-build.zip # Dockerfile uses this
83
github-token: ${{ secrets.GITHUB_TOKEN }}
84
run-id: ${{ github.event_name == 'release' && github.run_id || github.event.inputs.run_id }}
85
+ - name: Decompress scalafmt artifact
86
+ run: unzip tmp/scalafmt-docker-build.zip -d tmp # Dockerfile uses this
87
- name: Login to DockerHub
88
uses: docker/login-action@v3
89
0 commit comments