Skip to content

Commit

Permalink
Changes following review
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed Apr 26, 2024
1 parent a93d652 commit 92674f7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
push:
branches:
- master
- 'release-*'
- '*-dev'
# TODO RC remove
- richard-drone-ui-pr

jobs:
test:
uses: ./.github/workflows/test.yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build (Release)
on:
push:
tags:
- v2.9.*
- v*

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches:
- master
- 'release-*'
# This tells GH that the workflow is reusable
workflow_call:

jobs:
Expand Down
7 changes: 4 additions & 3 deletions scripts/build-static
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,10 @@ BUILD_DIR="${BUILD_PAR}/${VERSION}"
BUILD_TGZ="${BUILD_PAR}/${VERSION}.tar.gz"

# Outputs for gh actions
echo "BUILD_DIR=${BUILD_DIR}" >> "$GITHUB_OUTPUT"
echo "BUILD_TGZ=${BUILD_TGZ}" >> "$GITHUB_OUTPUT"
echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
ENV_OUTPUT="${GITHUB_OUTPUT:-"temp-env"}"
echo "BUILD_DIR=${BUILD_DIR}" >> "$ENV_OUTPUT"
echo "BUILD_TGZ=${BUILD_TGZ}" >> "$ENV_OUTPUT"
echo "VERSION=${VERSION}" >> "$ENV_OUTPUT"

# Print settings
echo "Branch: ${BRANCH}"
Expand Down
9 changes: 0 additions & 9 deletions scripts/gcs_upload_asset

This file was deleted.

0 comments on commit 92674f7

Please sign in to comment.