Skip to content

Commit

Permalink
github action docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDo1 committed Oct 27, 2022
1 parent d4d1ce4 commit 7d26c62
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker Image CI

on:
release:
types: [published]

jobs:

build:

runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: build and push
uses: docker/build-push-action@v1
with:
registry: ghcr.io
username: "vforwater"
password: ${{ secrets.PAT }}
repository: vforwater/tbr_template_octave
tags: latest,${{ github.ref_name }}

0 comments on commit 7d26c62

Please sign in to comment.