Skip to content

Commit

Permalink
Add GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tpai committed Mar 15, 2024
1 parent 8bf3223 commit f03777e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/jobs.yml
@@ -0,0 +1,24 @@
on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build the Docker image
run: docker build . --file Dockerfile --tag tonypai/summary-gpt-bot:$(echo $GITHUB_REF | rev | cut -d/ -f1 | rev)

- name: Docker login
run: docker login --username ${{ secrets.DOCKER_USERNAME }} --password ${{ secrets.DOCKER_PASSWORD }}

- name: Push Docker image
run: |
TAG_NAME=$(echo $GITHUB_REF | rev | cut -d/ -f1 | rev)
docker push tonypai/summary-gpt-bot:$TAG_NAME
docker tag tonypai/summary-gpt-bot:$TAG_NAME tonypai/summary-gpt-bot:latest
docker push tonypai/summary-gpt-bot:latest

0 comments on commit f03777e

Please sign in to comment.