Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-native: fix the location of the archive #4852

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- main
tags_ignore:
- '*'
pull_request:

permissions:
contents: read
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/release-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
run_id:
description: "Github actions run_id which built the release"
required: true
pull_request:

permissions:
contents: read
Expand Down Expand Up @@ -78,10 +79,16 @@ jobs:
- name: Downloading scalafmt for Docker Build
uses: actions/download-artifact@v4
with:
name: scalafmt-x86_64-pc-linux
name: scalafmt-x86_64-pc-linux.zip
path: tmp/scalafmt-docker-build # Dockerfile uses this
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event_name == 'release' && github.run_id || github.event.inputs.run_id }}
run-id: ${{ github.event_name == 'release' && github.run_id || '13596561226' }}
- name: What do we have 1
run: ls -ltr tmp/scalafmt-docker-build
- name: Decompress scalafmt artifact
run: unzip tmp/scalafmt-docker-build/scalafmt-x86_64-pc-linux.zip -d tmp/scalafmt-docker-build
- name: What do we have 2
run: ls -ltr tmp/scalafmt-docker-build
- name: Login to DockerHub
uses: docker/login-action@v3
with:
Expand Down
Loading