bump version (#1588)

* bump version

* cleanup
This commit is contained in:
Lukas Gravley 2021-05-25 12:03:41 -05:00 committed by GitHub
parent 83badbc49c
commit c0a3b959cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 4 deletions

View file

@ -99,6 +99,17 @@ jobs:
github/super-linter:latest github/super-linter:latest
ghcr.io/github/super-linter:latest ghcr.io/github/super-linter:latest
###########################
# Clean the docker daemon #
###########################
- name: Docker cleanup
run: |
docker images -f dangling=true | \
tr '[:upper:]' '[:lower:]' | \
awk '{print $3}' | \
xargs docker rmi -f
exit 0
########################################### ###########################################
# Build and Push containers to registries # # Build and Push containers to registries #
########################################### ###########################################

View file

@ -138,12 +138,23 @@ jobs:
push: true push: true
tags: | tags: |
github/super-linter:latest github/super-linter:latest
github/super-linter:v3 github/super-linter:v4
github/super-linter:${{ env.RELEASE_VERSION }} github/super-linter:${{ env.RELEASE_VERSION }}
ghcr.io/github/super-linter:latest ghcr.io/github/super-linter:latest
ghcr.io/github/super-linter:v3 ghcr.io/github/super-linter:v4
ghcr.io/github/super-linter:${{ env.RELEASE_VERSION }} ghcr.io/github/super-linter:${{ env.RELEASE_VERSION }}
###########################
# Clean the docker daemon #
###########################
- name: Docker cleanup
run: |
docker images -f dangling=true | \
tr '[:upper:]' '[:lower:]' | \
awk '{print $3}' | \
xargs docker rmi -f
exit 0
########################################### ###########################################
# Build and Push containers to registries # # Build and Push containers to registries #
########################################### ###########################################
@ -159,10 +170,10 @@ jobs:
push: true push: true
tags: | tags: |
github/super-linter:slim-latest github/super-linter:slim-latest
github/super-linter:slim-v3 github/super-linter:slim-v4
github/super-linter:slim-${{ env.RELEASE_VERSION }} github/super-linter:slim-${{ env.RELEASE_VERSION }}
ghcr.io/github/super-linter:slim-latest ghcr.io/github/super-linter:slim-latest
ghcr.io/github/super-linter:slim-v3 ghcr.io/github/super-linter:slim-v4
ghcr.io/github/super-linter:slim-${{ env.RELEASE_VERSION }} ghcr.io/github/super-linter:slim-${{ env.RELEASE_VERSION }}
######################## ########################