Skip to content

Commit fca248a

Browse files
committed
addin tag
1 parent 881e35e commit fca248a

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/actions/build-stac-browser/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Build STAC Browser UI
22
description: Builds Voyager STAC Browser UI
33

44
inputs:
5+
tag:
6+
description: Tag for artifacts
7+
required: true
58
upload:
69
description: Where to upload artifacts
710
required: true
@@ -44,5 +47,6 @@ runs:
4447
with:
4548
folder: apps/stac
4649
name: STAC Browser
50+
tag: ${{inputs.tag}}
4751
arch: any
4852
include: stac.zip

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: Build
22

33
on:
44
workflow_dispatch:
5+
inputs:
6+
tag:
7+
description: Tag for artifacts
8+
type: string
9+
required: false
10+
default: latest
511

612
push:
713
branches:
@@ -26,4 +32,5 @@ jobs:
2632
- name: Build
2733
uses: ./.github/actions/build-stac-browser
2834
with:
35+
tag: ${{ env.TAG }}
2936
upload: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)