Skip to content

Bump gevent from 24.10.2 to 24.10.3 (#399) #362

Bump gevent from 24.10.2 to 24.10.3 (#399)

Bump gevent from 24.10.2 to 24.10.3 (#399) #362

Workflow file for this run

name: Deploy To GAE
on:
push:
branches:
- master
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Authorize to Google Cloud
uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.GOOGLE_SERVICE_ACCOUNT_CREDENTIALS_JSON }}'
- name: Deploy to App Engine
id: deploy
uses: google-github-actions/deploy-appengine@v2
- name: cURL Test
run: curl "${{ steps.deploy.outputs.url }}"
- name: Set up Cloud SDK
uses: 'google-github-actions/setup-gcloud@v2'
- name: Delete Old App Versions
# delete all but latest 5 versions
run: |
gcloud app versions list \
--format="value(version.id)" \
--sort-by="~version.createTime" \
| tail -n +5 \
| xargs -r gcloud app versions delete --quiet
# make sure we didn't delete the current version
- name: cURL Test
run: curl "${{ steps.deploy.outputs.url }}"
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
cache-from: ghcr.io/${{ github.repository }}:latest
cache-to: type=inline
tags: ghcr.io/${{ github.repository }}:latest