Skip to content

Commit

Permalink
update version tag retrieval method
Browse files Browse the repository at this point in the history
  • Loading branch information
Caden-Helbling committed Feb 19, 2024
1 parent 60afa68 commit 512e753
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/larch_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,26 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Get release tag name
id: get_tag_name
run: echo "RELEASE_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
- name: Get latest release tag
id: get_latest_tag
run: |
TOKEN="${{ secrets.GITHUB_TOKEN }}"
VERSION=$(curl -s -H "Authorization: Bearer $TOKEN" "https://api.github.com/repos/${{ github.repository }}/releases/latest" | jq -r .tag_name)
echo "RELEASE_TAG=${VERSION}" >> $GITHUB_ENV
- name: Zip repository
run: |
zip -r "larch_${RELEASE_TAG}.zip" .
zip -r "larch_latest.zip" .
- name: ConfigureAWS Credentials
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::067782713062:role/admin-oidc
role-session-name: ${{ github.repository_owner}}
role-session-name: ${{ github.repository_owner }}
aws-region: us-east-1

- name: Upload to S3
run: |
aws s3 cp "./larch_${RELEASE_TAG}.zip" s3://impact-repo-dependencies/larch/
aws s3 cp "./larch_latest.zip" s3://impact-repo-dependencies/larch/
aws s3 cp "./larch_latest.zip" s3://impact-repo-dependencies/larch/

0 comments on commit 512e753

Please sign in to comment.