Skip to content

refactoring: move http requests to async background function #7

refactoring: move http requests to async background function

refactoring: move http requests to async background function #7

Workflow file for this run

name: deploy with uwsgi
on:
push:
branches:
- '*'
tags:
- '*'
jobs:
docker_hub:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 2
- 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 Docker image
id: docker_build
uses: docker/build-push-action@v3
with:
file: ./uwsgi.Dockerfile
platforms: linux/amd64
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/frp_info:uwsgi