Skip to content

Commit

Permalink
fix: fast feedback for nightly script (#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd committed Jul 17, 2024
1 parent e5a8af9 commit 686a6b7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nightly-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,36 @@ jobs:
# packages: write
# uses: ./.github/workflows/release-tests.yaml

build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0

- name: Setup golang
uses: ./.github/actions/golang

- name: Install UDS CLI
uses: ./.github/actions/install-uds-cli

- name: Build CLI
run: |
uds run build-cli-linux-amd
# Upload the contents of the build directory for later stages to use
- name: Upload build artifacts
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
name: build-artifacts
path: build/
retention-days: 1
push:
runs-on: ubuntu-latest
environment: release-nightly
# needs: test
needs: build
permissions:
contents: write
steps:
Expand Down

0 comments on commit 686a6b7

Please sign in to comment.