-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
100 additions
and
107 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
name: Docker | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- v* | ||
pull_request: | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Prepare configuration | ||
run: | | ||
# Strip git ref prefix from version | ||
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | ||
# Strip "v" prefix from tag name | ||
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
# Use Docker `latest` tag convention | ||
[ "$VERSION" == "main" ] && VERSION=latest | ||
echo VERSION=$VERSION | ||
echo "VERSION=${VERSION}" >> $GITHUB_ENV | ||
IMAGE_ID=${{ github.actor }}/latex | ||
echo IMAGE_ID=$IMAGE_ID | ||
echo "IMAGE_ID=${IMAGE_ID}" >> $GITHUB_ENV | ||
- name: Build minimal | ||
run: | | ||
make minimal | ||
docker tag ${{ env.IMAGE_ID }}:latest-minimal ${{ env.IMAGE_ID }}:${{ env.VERSION }}-minimal | ||
docker tag ${{ env.IMAGE_ID }}:latest-minimal ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-minimal | ||
- name: Build basic | ||
run: | | ||
make basic | ||
docker tag ${{ env.IMAGE_ID }}:latest-basic ${{ env.IMAGE_ID }}:${{ env.VERSION }}-basic | ||
docker tag ${{ env.IMAGE_ID }}:latest-basic ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-basic | ||
- name: Build small | ||
run: | | ||
make small | ||
docker tag ${{ env.IMAGE_ID }}:latest-small ${{ env.IMAGE_ID }}:${{ env.VERSION }}-small | ||
docker tag ${{ env.IMAGE_ID }}:latest-small ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-small | ||
- name: Build medium | ||
run: | | ||
make medium | ||
docker tag ${{ env.IMAGE_ID }}:latest-medium ${{ env.IMAGE_ID }}:${{ env.VERSION }}-medium | ||
docker tag ${{ env.IMAGE_ID }}:latest-medium ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-medium | ||
- name: Build full | ||
run: | | ||
make full | ||
docker tag ${{ env.IMAGE_ID }}:latest-full ${{ env.IMAGE_ID }}:${{ env.VERSION }}-full | ||
docker tag ${{ env.IMAGE_ID }}:latest-full ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-full | ||
docker tag ${{ env.IMAGE_ID }}:latest-full ${{ env.IMAGE_ID }}:${{ env.VERSION }} | ||
docker tag ${{ env.IMAGE_ID }}:latest-full ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }} | ||
- name: Run tests | ||
run: | | ||
make test | ||
- name: Log in to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Push images | ||
run: | | ||
docker push ${{ env.IMAGE_ID }}:${{ env.VERSION }}-minimal | ||
docker push ${{ env.IMAGE_ID }}:${{ env.VERSION }}-basic | ||
docker push ${{ env.IMAGE_ID }}:${{ env.VERSION }}-small | ||
docker push ${{ env.IMAGE_ID }}:${{ env.VERSION }}-medium | ||
docker push ${{ env.IMAGE_ID }}:${{ env.VERSION }}-full | ||
docker push ${{ env.IMAGE_ID }}:${{ env.VERSION }} | ||
docker push ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-minimal | ||
docker push ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-basic | ||
docker push ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-small | ||
docker push ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-medium | ||
docker push ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }}-full | ||
docker push ghcr.io/${{ env.IMAGE_ID }}:${{ env.VERSION }} |
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
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
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