New Crowdin updates #1657
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
# Build, test and push InvenTree docker image | |
# This workflow runs under any of the following conditions: | |
# | |
# - Push to the master branch | |
# - Publish release | |
# | |
# The following actions are performed: | |
# | |
# - Check that the version number matches the current branch or tag | |
# - Build the InvenTree docker image | |
# - Run suite of unit tests against the build image | |
# - Push the compiled, tested image to dockerhub | |
name: Docker | |
on: | |
release: | |
types: [ published ] | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
jobs: | |
paths-filter: | |
name: Filter | |
runs-on: ubuntu-latest | |
outputs: | |
docker: ${{ steps.filter.outputs.docker }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # [email protected] | |
- uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # [email protected] | |
id: filter | |
with: | |
filters: | | |
docker: | |
- .github/workflows/docker.yaml | |
- docker/** | |
- docker-compose.yml | |
- docker.dev.env | |
- Dockerfile | |
- requirements.txt | |
# Build the docker image | |
build: | |
runs-on: ubuntu-latest | |
needs: paths-filter | |
if: needs.paths-filter.outputs.docker == 'true' || github.event_name == 'release' || github.event_name == 'push' | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
python_version: 3.9 | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # [email protected] | |
- name: Set Up Python ${{ env.python_version }} | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # [email protected] | |
with: | |
python-version: ${{ env.python_version }} | |
- name: Version Check | |
run: | | |
pip install requests | |
pip install pyyaml | |
python3 ci/version_check.py | |
echo "git_commit_hash=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
echo "git_commit_date=$(git show -s --format=%ci)" >> $GITHUB_ENV | |
- name: Build Docker Image | |
# Build the development docker image (using docker-compose.yml) | |
run: | | |
docker-compose build --no-cache | |
- name: Update Docker Image | |
run: | | |
docker-compose run inventree-dev-server invoke update | |
docker-compose run inventree-dev-server invoke setup-dev | |
docker-compose up -d | |
docker-compose run inventree-dev-server invoke wait | |
- name: Check Data Directory | |
# The following file structure should have been created by the docker image | |
run: | | |
test -d data | |
test -d data/env | |
test -d data/pgdb | |
test -d data/media | |
test -d data/static | |
test -d data/plugins | |
test -f data/config.yaml | |
test -f data/plugins.txt | |
test -f data/secret_key.txt | |
- name: Run Unit Tests | |
run: | | |
echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> docker.dev.env | |
docker-compose run inventree-dev-server invoke test --disable-pty | |
docker-compose run inventree-dev-server invoke test --migrations --disable-pty | |
docker-compose down | |
- name: Set up QEMU | |
if: github.event_name != 'pull_request' | |
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # [email protected] | |
- name: Set up Docker Buildx | |
if: github.event_name != 'pull_request' | |
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # [email protected] | |
- name: Set up cosign | |
if: github.event_name != 'pull_request' | |
uses: sigstore/cosign-installer@11086d25041f77fe8fe7b9ea4e48e3b9192b8f19 # [email protected] | |
- name: Login to Dockerhub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # [email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Log into registry ghcr.io | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # [email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Docker metadata | |
if: github.event_name != 'pull_request' | |
id: meta | |
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # [email protected] | |
with: | |
images: | | |
inventree/inventree | |
ghcr.io/inventree/inventree | |
- name: Build and Push | |
id: build-and-push | |
if: github.event_name != 'pull_request' | |
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # [email protected] | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
sbom: true | |
provenance: false | |
target: production | |
tags: ${{ env.docker_tags }} | |
build-args: | | |
commit_hash=${{ env.git_commit_hash }} | |
commit_date=${{ env.git_commit_date }} | |
- name: Sign the published image | |
if: ${{ false }} # github.event_name != 'pull_request' | |
env: | |
COSIGN_EXPERIMENTAL: "true" | |
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }} |