Skip to content

Commit 69d6a57

Browse files
committed
WIP: mod: .github/workflows/actions.yml (main)
Signed-off-by: Philippe Coval <[email protected]> Change-Id: I80671aac4c48b25f174929d02a5738618b0a59f5
1 parent c87ec06 commit 69d6a57

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/actions.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# YAML
22
---
3-
- name: gh-describe
4-
if: ghd
5-
uses: proudust/[email protected]
6-
- name: Check outputs
7-
run: |
8-
echo "describe : ${{ steps.ghd.outputs.describe }}"
3+
name: test-action
4+
on: [push]
5+
jobs:
6+
post:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- id: log
11+
run: echo "::set-output name=tag::$(git describe --tags --all)"
12+
- id: publish
13+
gh release create steps.log.outputs.tag ${{ github.repository }}.zip -R https://github.com/${{ github.repository }}

0 commit comments

Comments
 (0)