Skip to content

Update organization parser bot #38

Update organization parser bot

Update organization parser bot #38

Workflow file for this run

name: Make release
on:
workflow_dispatch:
push:
branches:
- master
jobs:
checking:
name: Check repository
uses: ./.github/workflows/main.yml
build_and_push_docker:
name: Build and push AMD64 and ARM64 images
needs: checking
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- 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: Build and push
uses: docker/build-push-action@v4
with:
push: true
platforms: linux/amd64,linux/arm64
tags: andytakker/organization_parser:latest