Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
a5bf6f3
feat(EAV-280): aws ci cd pipeline (#34)
chandrashekar-nallamilli Nov 25, 2024
f834585
fix aws pipeline
chandrashekar-nallamilli Feb 19, 2025
df7b99f
fix aws pipeline
chandrashekar-nallamilli Feb 19, 2025
83a7aca
Merge pull request #38 from tv2norge-collab/contribute/EAV-450
ianshade Feb 19, 2025
02a3f8b
Merge pull request #39 from tv2norge-collab/contribute/EAV-487
ianshade Feb 19, 2025
a14906f
Merge pull request #41 from tv2norge-collab/contribute/EAV-296
ianshade Feb 19, 2025
cbc5791
Merge remote-tracking branch 'tv2norge/release52' into EAV-488_release52
ianshade Feb 20, 2025
8accb7a
Merge pull request #42 from tv2norge-collab/EAV-488_release52
ianshade Feb 20, 2025
5ca0448
Merge branch 'release52' into contribute/EAV-111
ianshade Feb 20, 2025
04f538d
Merge pull request #43 from tv2norge-collab/contribute/EAV-111
ianshade Feb 20, 2025
201ab99
chore(EAV-280): fix node.yaml to build the webui
ianshade Feb 20, 2025
437ab83
chore: update TSR
ianshade Feb 20, 2025
89b180e
chore: fix codeartifact login
ianshade Feb 21, 2025
c8a48f6
Merge pull request #44 from tv2norge-collab/contribute/EAV-450
ianshade Feb 24, 2025
eab912a
fix(EAV-514): omit privateData in bucket adlib pieces and actions pub…
ianshade Feb 24, 2025
a5e9bf1
Merge remote-tracking branch 'tv2norge/release52' into EAV-514
ianshade Feb 24, 2025
be2fbad
Merge pull request #45 from tv2norge-collab/EAV-514
ianshade Feb 24, 2025
2987653
fix(EAV-513): prevent queued Part from hijacking infinite Pieces from…
ianshade Mar 4, 2025
792dc8c
fix(EAV-518): offset lookaheads following other look aheads by 1 (#47)
ianshade Mar 6, 2025
57c6532
Revert "fix(EAV-518): offset lookaheads following other look aheads b…
ianshade Mar 11, 2025
78364c9
chore(EAV-526): update superfly-timeline
ianshade Mar 11, 2025
437d63e
chore(EAV-526): update TSR
ianshade Mar 26, 2025
1155a18
Merge pull request #48 from tv2norge-collab/EAV-526
ianshade Mar 26, 2025
4132660
Merge remote-tracking branch 'origin/release52' into EAV-537
ianshade Apr 7, 2025
45672a8
Merge pull request #49 from tv2norge-collab/EAV-537
ianshade Apr 10, 2025
470f8d0
Merge pull request #50 from tv2norge-collab/EAV-534
ianshade Apr 10, 2025
3f70a5b
fix(EAV-555): make prompter scroll
ianshade Apr 16, 2025
d724e7c
chore(EAV-555): fix linting errors
ianshade Apr 16, 2025
acc43b8
Merge pull request #51 from tv2norge-collab/EAV-555
ianshade Apr 16, 2025
5078295
chore(EAV-539): update TSR
ianshade Apr 22, 2025
6e78d41
chore(EAV-539): update TSR
ianshade Apr 28, 2025
e09bb3d
Merge remote-tracking branch 'origin/release52' into EAV-539
ianshade May 5, 2025
80701f6
chore(EAV-539): update TSR with Soldis features
ianshade May 12, 2025
908f51a
chore(EAV-539): update TSR with latest superfly-timeline
ianshade May 12, 2025
ef84c33
Merge pull request #52 from tv2norge-collab/EAV-539
ianshade May 12, 2025
7edb3c2
feat(EAV-372): customizable shuttle webhid buttons
ianshade May 20, 2025
68bd680
fix(EAV-372): settings lost on studio update
ianshade May 26, 2025
e8c275b
fix(EAV-598): make `updateOverrides` respect deep property overrides,…
ianshade May 27, 2025
a53f8ad
chore(EAV-599): update TSR (prerelease)
ianshade May 28, 2025
0acef75
chore(EAV-599): update TSR
ianshade May 30, 2025
7ec9e1c
Merge pull request #53 from tv2norge-collab/EAV-599
ianshade May 30, 2025
c79148c
Merge pull request #54 from tv2norge-collab/EAV-372
ianshade May 30, 2025
c861e32
fix(EAV-640): make current segment timing consider partInstances
ianshade Jun 27, 2025
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
37 changes: 37 additions & 0 deletions .github/actions/codeartifact-login/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CodeArtifact Login
description: Makes sure Corepack is enabled, logs into CodeArtifact and configures the token in order to be able to pull dependencies
inputs:
account-id:
required: true
role-to-assume:
required: true
aws-region:
required: true
repository:
required: false
default: selma-store # should probably put that in a secret instead
domain:
required: false
default: selma # should probably put that in a secret instead
runs:
using: composite
steps:
- name: Enable Corepack
shell: bash
run: corepack enable
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ inputs.role-to-assume }}
aws-region: ${{ inputs.aws-region }}
- name: Login to CodeArtifact
shell: bash
run: |
aws codeartifact login --tool npm --repository ${{ inputs.repository }} --domain ${{ inputs.domain }} --domain-owner ${{ inputs.account-id }} --region ${{ inputs.aws-region }}
- name: Configure CodeArtifact Token
shell: bash
run: |
export CODEARTIFACT_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain ${{ inputs.domain }} --domain-owner ${{ inputs.account-id }} --region ${{ inputs.aws-region }} --query authorizationToken --output text`
yarn config set npmRegistryServer "https://${{ inputs.domain }}-${{ inputs.account-id }}.d.codeartifact.${{ inputs.aws-region }}.amazonaws.com/npm/${{ inputs.repository }}/"
yarn config set 'npmRegistries["https://${{ inputs.domain }}-${{ inputs.account-id }}.d.codeartifact.${{ inputs.aws-region }}.amazonaws.com/npm/${{ inputs.repository }}/"].npmAuthToken' "${CODEARTIFACT_AUTH_TOKEN}"
yarn config set 'npmRegistries["https://${{ inputs.domain }}-${{ inputs.account-id }}.d.codeartifact.${{ inputs.aws-region }}.amazonaws.com/npm/${{ inputs.repository }}/"].npmAlwaysAuth' "true"
6 changes: 6 additions & 0 deletions .github/workflows/delete-old-image.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
REPO_NAME=$1
IMAGE_DIGEST=$2
AWS_REGION=$3
echo "$IMAGE_DIGEST"
aws ecr batch-delete-image --repository-name $REPO_NAME --image-ids imageDigest="$IMAGE_DIGEST" --region $AWS_REGION
Loading
Loading