Skip to content

feat: move github file retrieval logic to API call #2

feat: move github file retrieval logic to API call

feat: move github file retrieval logic to API call #2

Workflow file for this run

name: release
on:
push:
branches:
- main
tags:
- v*
jobs:
build_push:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Login to ghcr.io
uses: docker/#-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push the image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ghcr.io/${{ github.repository }}:${{ github.ref_name }}