changing the way that pipelines work
This commit is contained in:
@@ -22,8 +22,15 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
- name: Install JS dependencies
|
||||
run: npm install
|
||||
- name: Run prepare scripts
|
||||
run: sh scripts/prepare_release.sh
|
||||
- name: Run build
|
||||
run: npm run build
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
||||
|
||||
build_vision_start:
|
||||
name: Build Vision Start Image
|
||||
@@ -33,6 +40,12 @@ jobs:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: dist
|
||||
path: dist/
|
||||
|
||||
- name: Log in to Container Registry
|
||||
run: |
|
||||
echo "${{ secrets.REGISTRY_PASSWORD }}" \
|
||||
|
||||
Reference in New Issue
Block a user