Create oci.yml

This commit is contained in:
Mustafa Gezen 2020-12-17 12:39:32 +01:00 committed by GitHub
parent e55e442aea
commit 12fab6e7cc
1 changed files with 19 additions and 0 deletions

19
.github/workflows/oci.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: OCI
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to Docker Hub
run: docker login --username mstg --pasword ${{secrets.DOCKER_SECRET}}
- name: Get the version
run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
- name: Build the Docker image
run: docker build . -t docker.io/mstg/srpmproc:${SOURCE_TAG}
- name: Push to Docker Hub
run: docker push docker.io/mstg/srpmproc:${SOURCE_TAG}