Skip to content

retry fetching created posts to try and avoid race condition #77

retry fetching created posts to try and avoid race condition

retry fetching created posts to try and avoid race condition #77

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- master
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
"${{ vars.DOCKERHUB_USERNAME }}/skybridge:latest"
"${{ vars.DOCKERHUB_USERNAME }}/skybridge:${{ github.sha }}"