Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaqq committed Apr 17, 2023
1 parent c650ac7 commit 93d6762
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci.yaml
@@ -0,0 +1,39 @@
---
"on":
push:
tags:
- "*"
branches:
- main
- release/**
pull_request:

jobs:
mre:
runs-on: ubuntu-latest
steps:
- id: tag
uses: docker/metadata-action@v4
with:
images:
quay.io/somerepo/someimage
- run: |
echo "try 2 version:"
cat << EOF
${{ steps.tag.outputs.version }}
EOF
echo "try 2 tags:"
cat << EOF
${{ steps.tag.outputs.tags }}
EOF
echo "try 2 labels:"
cat << EOF
${{ steps.tag.outputs.labels }}
EOF
echo "try 2 json:"
jq . << EOF
${{ steps.tag.outputs.json }}
EOF
echo
echo "github event"
jq . $GITHUB_EVENT_PATH

0 comments on commit 93d6762

Please sign in to comment.