Skip to content

fix: address typo in parser release workflow #5

fix: address typo in parser release workflow

fix: address typo in parser release workflow #5

Workflow file for this run

name: release
on:
push:
branches:
- main
tags:
- v*
jobs:
build_push_app:
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 }}
build_push_parser:
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: parser
push: true
tags: ghcr.io/${{ github.repository }}/parser:${{ github.ref_name }}