Skip to content

Commit

Permalink
ci: Download built artifacts on main push
Browse files Browse the repository at this point in the history
  • Loading branch information
jontze committed Jun 9, 2024
1 parent e456d5c commit c420f93
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,19 @@ jobs:
test:
name: Test
uses: ./.github/workflows/test.yaml

download_built:
name: Download Built
runs-on: ubuntu-latest
needs:
- test
if: needs.test.outputs.has-changes == 'true'
steps:
- name: Download Built
uses: actions/download-artifact@v4
with:
name: lib-artifact-${{ github.sha }}
- name: Sanity Check
run: |
ls -la
ls -la dist/libs/ng-remote-config

0 comments on commit c420f93

Please sign in to comment.