Skip to content

Bump flask from 2.2.2 to 2.3.2 (#61) #119

Bump flask from 2.2.2 to 2.3.2 (#61)

Bump flask from 2.2.2 to 2.3.2 (#61) #119

Workflow file for this run

name: ci-build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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 GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v4.0.0
with:
tags: ghcr.io/beryju/oauth1-test-server:latest
push: ${{ github.ref == 'refs/heads/main' }}
platforms: linux/amd64,linux/arm64