chore: testing
This commit is contained in:
parent
63f36432cb
commit
1edfd5e748
1 changed files with 22 additions and 0 deletions
22
.github/workflows/action-test.yml
vendored
Normal file
22
.github/workflows/action-test.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: Docker Image Tags
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
tag:
|
||||||
|
description: 'Repo Branch/Tag'
|
||||||
|
default: 'main'
|
||||||
|
type: 'string'
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ inputs.tag }}
|
||||||
|
|
||||||
|
- name: env
|
||||||
|
run: env
|
Loading…
Reference in a new issue