v0.1.76 #65
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: Publish | |
on: | |
release: | |
types: [published] | |
concurrency: | |
group: encord-active-${{ github.ref }}-publish | |
cancel-in-progress: true | |
jobs: | |
frontend-build: | |
name: Build frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.AUTOMATION_BOT_ACCESS_TOKEN }} | |
ref: main | |
- name: Build | |
uses: ./.github/actions/build-frontend | |
with: | |
secrets: ${{ toJSON(secrets) }} | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: frontend-build-${{ github.sha }} | |
path: src/encord_active/frontend/dist | |
if-no-files-found: error | |
publish: | |
needs: [frontend-build] | |
name: Build and publish Encord Active | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.AUTOMATION_BOT_ACCESS_TOKEN }} | |
ref: main | |
- name: Download frontend build | |
uses: actions/download-artifact@v3 | |
with: | |
name: frontend-build-${{ github.sha }} | |
path: src/encord_active/frontend/dist | |
- name: Setup root poetry environment | |
uses: ./.github/actions/setup-root-poetry-environment | |
- name: Poetry Version Bump | |
run: "poetry version ${{ github.ref_name }}" | |
- name: Module Version Bump | |
run: 'sed -i "s/__version__ = \".*\"/__version__ = \"${{ github.ref_name }}\"/g" src/encord_active/__init__.py' | |
- name: Version Bump commit | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Version bump to ${{ github.ref_name }}" | |
push_options: --force | |
- name: Build | |
run: poetry build | |
- name: Publish | |
run: | | |
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} | |
poetry publish | |
docker: | |
needs: [publish] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Download frontend build | |
uses: actions/download-artifact@v3 | |
with: | |
name: frontend-build-${{ github.sha }} | |
path: src/encord_active/frontend/dist | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
${{ secrets.DOCKERHUB_USERNAME }}/encord-active | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=registry,ref=${{ secrets.DOCKERHUB_USERNAME }}/encord-active:latest | |
cache-to: type=inline |