2023-11-29 21:00:09 -05:00
|
|
|
name: Development Image
|
2023-08-19 21:59:43 +00:00
|
|
|
|
2023-09-26 00:18:15 +00:00
|
|
|
on:
|
|
|
|
workflow_run:
|
2023-10-22 23:52:30 -04:00
|
|
|
workflows: ["unit test"]
|
2023-09-26 00:18:15 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
2023-08-19 21:59:43 +00:00
|
|
|
|
|
|
|
jobs:
|
2023-09-26 00:18:15 +00:00
|
|
|
build_and_push_image:
|
2023-08-22 17:13:52 +00:00
|
|
|
name: build image and push to Docker Hub
|
2024-06-22 11:36:29 -04:00
|
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'neodb-social' }}
|
2023-08-19 21:59:43 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2024-06-16 09:06:57 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-08-19 21:59:43 +00:00
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
2023-11-01 23:17:43 -04:00
|
|
|
- name: Check git version
|
|
|
|
id: version
|
|
|
|
run: |
|
|
|
|
echo "neodb=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
cd neodb-takahe
|
|
|
|
echo "takahe=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
|
2023-11-30 18:17:08 -05:00
|
|
|
- name: Overwrite version in code
|
|
|
|
env:
|
|
|
|
REF_NAME: ${{ github.ref_name }}
|
2024-01-14 22:57:45 -05:00
|
|
|
run: |
|
|
|
|
echo '__version__ = "'$REF_NAME'"' > boofilsic/__init__.py
|
|
|
|
echo '__version__ = "'$REF_NAME'"' > neodb-takahe/takahe/neodb.py
|
2023-11-30 18:17:08 -05:00
|
|
|
|
2023-11-01 23:17:43 -04:00
|
|
|
- name: Send Discord notification
|
|
|
|
uses: appleboy/discord-action@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
2023-11-21 09:20:58 -05:00
|
|
|
color: "#1857a4"
|
2023-11-30 18:17:08 -05:00
|
|
|
message: Building development image ${{ github.ref_name }}-${{ steps.version.outputs.neodb }}-${{ steps.version.outputs.takahe }}
|
2023-11-01 23:17:43 -04:00
|
|
|
|
2023-08-19 21:59:43 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
2023-11-29 21:00:09 -05:00
|
|
|
- name: Docker metadata
|
2023-08-19 21:59:43 +00:00
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
|
|
|
with:
|
|
|
|
images: neodb/neodb
|
2023-11-29 21:00:09 -05:00
|
|
|
tags: |
|
|
|
|
type=edge,branch=main
|
2023-08-19 21:59:43 +00:00
|
|
|
|
|
|
|
- name: Login to DockerHub
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: "linux/amd64,linux/arm64"
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-11-01 23:17:43 -04:00
|
|
|
|
|
|
|
- name: Send Discord notification complete
|
|
|
|
uses: appleboy/discord-action@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
2023-11-21 09:20:58 -05:00
|
|
|
color: "#1857a4"
|
2023-11-30 18:17:08 -05:00
|
|
|
message: Published development image ${{ github.ref_name }}-${{ steps.version.outputs.neodb }}-${{ steps.version.outputs.takahe }}
|