s/gozer/gravitational/g #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- teleport | |
- master | |
push: | |
branches: | |
- teleport | |
- master | |
tags: | |
- "*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: setup Python | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4 | |
with: | |
python-version: "3.8" | |
- name: install | |
run: pip install . | |
- name: run all checks | |
if: ${{ false }} | |
run: aws-quota-checker check all | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: eu-central-1 | |
publish: | |
runs-on: ubuntu-latest | |
needs: test | |
if: success() && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: setup Python | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4 | |
with: | |
python-version: "3.8" | |
- name: install | |
run: pip install .[dev] | |
- name: get changelog entry | |
id: changelog | |
run: python tools/extract-changelog-entry.py ${GITHUB_REF#refs/tags/} > changelog_entry | |
- name: build package | |
run: python setup.py bdist_wheel | |
- name: publish package | |
uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e # v1.8.10 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- name: create Release | |
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body_path: changelog_entry | |
build_and_push_docker_image: | |
runs-on: ubuntu-latest | |
needs: test | |
name: Build and push Docker image | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2 | |
with: | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.CR_PAT }} | |
- name: Build Docker image | |
run: docker build . --tag gravitational/aws-quota-checker:latest | |
- name: Push Docker image for branch | |
if: ${{ github.ref == 'refs/heads/maintainer' && github.event_name == 'push' }} | |
run: | | |
docker tag gravitational/aws-quota-checker:latest gravitational/aws-quota-checker:maintainer | |
docker push gravitational/aws-quota-checker:maintainer | |
- name: Push Docker image for branch | |
if: ${{ github.ref == 'refs/heads/maintainer' && github.event_name == 'push' }} | |
run: | | |
docker tag gravitational/aws-quota-checker:latest gravitational/aws-quota-checker:maintainer | |
docker push gravitational/aws-quota-checker:maintainer | |
- name: Push Docker image for tag | |
if: ${{ startsWith(github.ref, 'refs/tags') && github.event_name == 'push' }} | |
run: | | |
docker tag gravitational/aws-quota-checker:latest gravitational/aws-quota-checker:${GITHUB_REF##*/} | |
docker push gravitational/aws-quota-checker:latest | |
docker push gravitational/aws-quota-checker:${GITHUB_REF##*/} |