Merge pull request #29 from Icinga/bugfix/github-actions-artifacts

Don't upload any artifacts
This commit is contained in:
Noah Hilverling 2020-09-09 09:06:12 +02:00 committed by GitHub
commit 10f14a7826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

View File

@ -9,8 +9,6 @@ RUN mkdir actions ;\
git -C checkout.git archive --prefix=checkout/ v2 |tar -x ;\
git clone --bare https://github.com/actions/cache.git ;\
git -C cache.git archive --prefix=cache/ v2 |tar -x ;\
git clone --bare https://github.com/actions/upload-artifact.git ;\
git -C upload-artifact.git archive --prefix=upload-artifact/ v2 |tar -x ;\
rm -rf *.git

View File

@ -25,14 +25,6 @@ mkimg () {
docker build -f /Dockerfile -t "${TARGET}:$TAG" .
STATE_isPost=1 node /actions/checkout/dist/index.js
docker save "${TARGET}:$TAG" |gzip >docker-save.tgz
set +e
INPUT_NAME=docker-image INPUT_PATH=docker-save.tgz node /actions/upload-artifact/dist/index.js
set -e
rm docker-save.tgz
}
push () {