Merge pull request #690 from NBISweden/hotfix/yearly-report-blocker #1650
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: Create packages | |
on: push | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Update tags.json version | |
uses: jossef/action-set-json-field@v2.1 | |
with: | |
file: frontend/src/tags.json | |
field: gitBranch | |
value: ${{github.ref_name}} | |
- name: Build container | |
env: | |
GHCR_PAT: ${{ secrets.GHCR_PAT }} | |
GHCR_USER: ${{ secrets.GHCR_USER }} | |
DOCKER_BUILDKIT: 1 | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
run: | | |
echo "${GHCR_PAT}" | docker login ghcr.io -u "${GHCR_USER}" --password-stdin | |
branch=${GITHUB_REF##*/} | |
for image in herdbook_r-api herdbook_main herdbook_frontend; do | |
docker pull "ghcr.io/nbisweden/$image:latest" || true | |
docker pull "ghcr.io/nbisweden/$image:$branch" || true | |
done | |
for p in .docker/*.default ; do | |
mv "$p" "${p%.default}" | |
done | |
docker-compose build --build-arg BUILDKIT_INLINE_CACHE=1 | |
for image in herdbook_r-api herdbook_main herdbook_frontend; do | |
docker tag "$image:latest" "ghcr.io/nbisweden/$image:$branch" | |
docker push "ghcr.io/nbisweden/$image:$branch" | |
for mb in main master develop; do | |
if [ "$mb" = "$branch" ]; then | |
docker tag "$image:latest" "ghcr.io/nbisweden/$image:latest" | |
docker push "ghcr.io/nbisweden/$image:latest" | |
fi | |
done | |
done |