Skip to content

update dependencies to fix dependabot alerts #4

update dependencies to fix dependabot alerts

update dependencies to fix dependabot alerts #4

Workflow file for this run

name: docker-image
on:
push:
tags:
- 'v*'
env:
GHP_TAG: "docker.pkg.github.com/${{ github.repository }}/${{ github.event.repository.name }}:${{ github.ref_name }}"
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build docker image
run: docker build --tag "$GHP_TAG" .
- name: Login to Github Packages
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u "${{ github.actor }}" --password-stdin
- name: Publish image to GitHub Packages
run: docker push "$GHP_TAG"