Add .gitea/workflows/*.yaml
This commit is contained in:
@@ -65,6 +65,20 @@ jobs:
|
|||||||
name: image
|
name: image
|
||||||
path: /tmp/image.tar
|
path: /tmp/image.tar
|
||||||
|
|
||||||
|
integration-tests:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
needs: [build-image]
|
||||||
|
steps:
|
||||||
|
- name: Download artifact
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: image
|
||||||
|
path: /tmp
|
||||||
|
- name: Load image
|
||||||
|
run: |
|
||||||
|
docker load --input /tmp/image.tar
|
||||||
|
docker image ls -a
|
||||||
|
|
||||||
publish-image:
|
publish-image:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
needs: [integration-tests, vulnerability-scan]
|
needs: [integration-tests, vulnerability-scan]
|
||||||
|
|||||||
Reference in New Issue
Block a user