Build and Publish ClamAV Image #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build and Publish ClamAV Image | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 4 * * 0' | |
env: | |
DOCKER_NAME: clamav-rest | |
IMAGE: clamav | |
GH_REPO: gsa-tts/clamav-rest | |
jobs: | |
build-clamav: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Get Date | |
shell: bash | |
id: date | |
run: | | |
echo "date=$(date +%Y%m%d)" >> $GITHUB_OUTPUT | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Build Docker Image | |
run: docker build . -t ${{ env.DOCKER_NAME }}:${{ steps.date.outputs.date }} | |
- name: Tag Image | |
run: | | |
docker tag ${{ env.DOCKER_NAME }}:${{ steps.date.outputs.date }} ghcr.io/${{ env.GH_REPO }}/${{ env.IMAGE }}:${{ steps.date.outputs.date }} | |
docker tag ${{ env.DOCKER_NAME }}:${{ steps.date.outputs.date }} ghcr.io/${{ env.GH_REPO }}/${{ env.IMAGE }}:latest | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push Image | |
run: docker push --all-tags ghcr.io/${{ env.GH_REPO }}/${{ env.IMAGE }} |