Skip to content

Commit 5f970e0

Browse files
committed
fix: add workaround for author
1 parent 155060e commit 5f970e0

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
exit 1
6666
fi
6767
echo VERSION=$TAG> env.sh
68-
echo AUTHOR=$(grep 'service/' packages/packages.json | awk -F/ '{print $2}' | head -1) >> env.sh
68+
echo "TODO: remove hardcoded author to push images to valory docker repository"
69+
echo AUTHOR=valory >> env.sh
6970
echo SERVICE=$(grep 'service/' packages/packages.json | awk -F/ '{print $3}' | head -1) >> env.sh
7071
echo AGENT=$(grep 'agent/' packages/packages.json | awk -F/ '{print $3}' | head -1) >> env.sh
7172
echo DEFAULT_IMAGE_TAG=$(cat packages/packages.json | grep agent/ | awk -F: '{print $2}' | tr -d '", ' | head -n 1) >> env.sh
@@ -157,7 +158,6 @@ jobs:
157158
make agent.zip
158159
make agent.tar.gz
159160
160-
161161
## LINUX
162162
- name: Build Agent Runner Linux
163163
if: runner.os == 'Linux'
@@ -178,9 +178,9 @@ jobs:
178178
env:
179179
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
180180
CSC_LINK: ${{ secrets.CSC_LINK }}
181-
APPLE_ID: ${{ secrets.APPLE_ID }} # Apple ID email
182-
APPLE_ID_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} # App-specific password
183-
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} # Team ID из Apple Dev Account
181+
APPLE_ID: ${{ secrets.APPLE_ID }} # Apple ID email
182+
APPLE_ID_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} # App-specific password
183+
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} # Team ID из Apple Dev Account
184184
SIGN_ID: "Developer ID Application: Valory AG (${{ secrets.APPLE_TEAM_ID }})"
185185
run: |
186186
echo "$CSC_LINK" | base64 --decode > certificate.p12
@@ -290,7 +290,6 @@ jobs:
290290
name: agent_runner_windows_x64.exe
291291
path: ./dist/
292292

293-
294293
- name: Download artifacts
295294
uses: actions/download-artifact@v4
296295
with:

0 commit comments

Comments
 (0)