Skip to content

Commit

Permalink
Add gh-issue gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
pashutk committed Nov 9, 2023
1 parent 793d284 commit 3d4b759
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/gh-issue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish gh-issue bot Docker image
on:
workflow_dispatch:
inputs:
tags:
description: 'Test scenario tags'
push:
branches:
- main
paths:
- 'packages/gh-issue/**'
- 'packages/common/**'
jobs:
push_to_registry:
name: Push Docker image to atndr.net registry
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker registry
uses: docker/build-push-action@v1
with:
registry: docker.atndr.net
repository: bots/gh-issue
username: ${{ secrets.ATNDR_DOCKER_USERNAME }}
password: ${{ secrets.ATNDR_DOCKER_PASSWORD }}
tag_with_ref: true
tag_with_sha: true
path: packages
dockerfile: ./packages/gh-issue/Dockerfile

0 comments on commit 3d4b759

Please sign in to comment.