Skip to content

Commit

Permalink
q
Browse files Browse the repository at this point in the history
  • Loading branch information
ebelfarsi committed Jul 16, 2024
1 parent 778f1db commit 69f4151
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
run: |
mkdir -p ${{ needs.preamble.outputs.folder_build }}
echo "${{ secrets.SIGNING_SECRET }}" > ${{ needs.preamble.outputs.folder_build }}/private.key
plugins=("CASSANDRAEMBED" "COUCHBASEEMBED" "ECLBLAS" "H3" "JAVAEMBED" "KAFKA" "MEMCACHED" "MONGODBEMBED" "MYSQLEMBED" "NLP" "PARQUETEMBED" "REDIS" "REMBED" "SQLITE3EMBED" "SQS" "WASMEMBED" "PLATFORM" "CLIENTTOOLS_ONLY")
plugins=("CASSANDRAEMBED" "PLATFORM" "CLIENTTOOLS_ONLY")
for plugin in "${plugins[@]}"; do
sudo rm -f ${{ needs.preamble.outputs.folder_build }}/CMakeCache.txt
sudo rm -rf ${{ needs.preamble.outputs.folder_build }}/CMakeFiles
Expand Down Expand Up @@ -425,7 +425,7 @@ jobs:
path: ${{ needs.preamble.outputs.folder_build }}/**/*.log

run-package-manifest:

needs: [ preamble, build-docker ]
uses: ./.github/workflows/package-manifests.yml
with:
tag: ${{ needs.preamble.outputs.community_tag }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/package-manifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
required: true
LNB_TOKEN:
required: true

workflow_dispatch:
inputs:
tag:
Expand Down Expand Up @@ -45,7 +46,8 @@ jobs:
run: docker pull ebelfarsi/package-manifest:latest

- name: Run Docker Container
run: docker run --name package-container -e REPO_OWNER=hpcc-systems -e REPO_NAME=HPCC-Platform -e TAG=community_9.8.2-1 -e GIT_TKN=${{ secrets.LNB_TOKEN }} ebelfarsi/package-manifest:latest
run: docker run --name package-container -e REPO_OWNER=${{ github.repository_owner }} -e REPO_NAME=HPCC-Platform -e TAG=${{ github.event.inputs.tag }} -e GIT_TKN=${{ secrets.LNB_TOKEN }} ebelfarsi/package-manifest:latest


- name: Fetch Output from Container and Upload to S3
run: |
Expand Down

0 comments on commit 69f4151

Please sign in to comment.