Skip to content

Commit

Permalink
Test new login method
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilKWarmdahl committed Nov 13, 2024
1 parent f5ca7fd commit 3fe9f5c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ permissions:
jobs:
login-aws:
runs-on: ubuntu-latest
outputs:
access_key: ${{steps.export-creds.outputs.access_key}}
secret_key: ${{steps.export-creds.outputs.secret_key}}
environment: release
steps:
- name: aws creds
Expand All @@ -49,7 +52,8 @@ jobs:
- name: Export creds
id: export-creds
run: |
echo "access_key=${{steps.creds.outputs.aws-access-key-id}} secret_key=${{steps.creds.outputs.aws-secret-access-key}}" >> $GITHUB_ENV
echo "access_key=${{steps.creds.outputs.aws-access-key-id}}" >> $GITHUB_OUTPUT
echo "secret_key=${{steps.creds.outputs.aws-secret-access-key}}" >> $GITHUB_OUTPUT
release-desktop-wallet-linux:
Expand All @@ -59,8 +63,8 @@ jobs:
container:
image: "192549843005.dkr.ecr.eu-west-1.amazonaws.com/concordium/desktop-wallet-ci:latest"
credentials:
username: ${{needs.login-aws.env.access_key}}
password: ${{needs.login-aws.enc.secret_key}}
username: ${{needs.login-aws.outputs.access_key}}
password: ${{needs.login-aws.outputs.secret_key}}

steps:
- name: echo
Expand Down

0 comments on commit 3fe9f5c

Please sign in to comment.