feat: release version 0.5.6 to trigger docker build #286
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: Flow | |
on: | |
push: | |
branches: [ master ] | |
tags: [ v* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: lein deps | |
- name: Run Clojure Tests | |
run: lein test | |
- name: Run Java Tests | |
run: lein pom && mvn test --batch-mode --fail-at-end | |
coverage: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Coverage | |
run: lein coverage | |
- name: Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./target/coverage/codecov.json | |
clojars_push: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: lein deps | |
- name: Release Clojars | |
env: | |
CLOJARS_USER: ${{ secrets.CLOJARS_USER }} | |
CLOJARS_PASS: ${{ secrets.CLOJARS_PASS }} | |
run: lein deploy snapshots || echo skipping | |
docker_push: | |
needs: clojars_push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set env vars | |
run: | | |
IMAGE_ID=ghcr.io/erdos/stencil | |
# 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" == "master" ] && VERSION=latest | |
echo TAG=$IMAGE_ID:$VERSION >> $GITHUB_ENV | |
- name: Log into GitHub Container Registry | |
run: echo "${{ secrets.CR_PAT }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Build GraalVM image | |
working-directory: service | |
run: docker build . --file Dockerfile.graalvm --tag ${{ env.TAG }}-graal | |
- name: Push GraalVM image to GitHub Container Registry | |
run: docker push ${{ env.TAG }}-graal | |
- name: Build image | |
working-directory: service | |
run: docker build . --file Dockerfile --tag ${{ env.TAG }} | |
- name: Push image to GitHub Container Registry | |
run: docker push ${{ env.TAG }} |