[DEL] trigger #4
Workflow file for this run
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: Kiwix-build container images | |
on: | |
push: | |
paths: | |
- 'kiwix-build_ci/**' | |
env: | |
IMAGE_PREFIX: ghcr.io/kiwix/kiwix-build_ci_ | |
jobs: | |
Container: | |
strategy: | |
fail-fast: false | |
matrix: | |
variant: [f35, focal, bionic, alpine] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get current date | |
run: echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Retrieve the code | |
uses: actions/checkout@v3 | |
- name: Setup container image name | |
id: env | |
run: | | |
echo "IMAGE_NAME=${{ env.IMAGE_PREFIX }}${{ matrix.variant }}" >> $GITHUB_ENV | |
- name: Build container image | |
run: | | |
docker build -t ${{ env.IMAGE_NAME }} - < kiwix-build_ci/${{ matrix.variant }}_builder.dockerfile | |
- name: Tag release container image | |
if: github.event.ref == 'refs/heads/main' | |
run: | | |
docker tag ${{ env.IMAGE_NAME }} ${{ env.IMAGE_NAME }}:${{ env.DATE }} | |
docker tag ${{ env.IMAGE_NAME }} ${{ env.IMAGE_NAME }}:latest | |
- name: Upload container image | |
run: | | |
echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u "${{ secrets.GHCR_USERNAME }}" --password-stdin | |
docker push --all-tags ${{ env.IMAGE_NAME }} |