Skip to content

Commit

Permalink
switch docker registry to ghcr (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayazabbas authored May 7, 2024
1 parent f1c7b72 commit beca870
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 58 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/build-and-push-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Docker Image Build
on:
push:
tags:
- v*
pull_request:
branches: ["main"]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/python-poetry
- uses: pre-commit/action@v2.0.3

run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/python-poetry
- run: poetry run pytest
env:
TEST_MODE: "1"

build-and-push:
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
needs: [pre-commit, run-tests]
steps:
- name: Checkout repo
uses: actions/checkout@v3

# Set image tag to git tag, or commit hash for pull request
- name: Set IMAGE_TAG
run: |
if [ "${{ github.event_name }}" == "push" ]; then
echo "IMAGE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
else
echo "IMAGE_TAG=${{ github.sha }}" >> $GITHUB_ENV
fi
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=${{ env.IMAGE_TAG }}
type=raw,value=${{ github.sha }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
57 changes: 0 additions & 57 deletions .github/workflows/ci.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ignore_missing_imports = true

[tool.poetry]
name = "pyth-observer"
version = "0.1.14"
version = "0.1.15"
description = "Alerts and stuff"
authors = []
readme = "README.md"
Expand Down

0 comments on commit beca870

Please sign in to comment.