Skip to content

Commit

Permalink
local composite GHa test
Browse files Browse the repository at this point in the history
  • Loading branch information
thlava-cesnet committed Aug 1, 2023
1 parent 342bab7 commit 58966de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 101 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/at-wf1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Runs a set of commands using the runners shell
- name: Run a multi-line script
Expand Down
7 changes: 4 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
outputs:
output1:
description: 'output1 description'
value: 'action1: ${{ inputs.input1 }}; ${{ steps.random-number-generator.outputs.random-id }}'
value: 'action1: ${{ inputs.input1 }}; ${{ steps.step2.outputs.out1 }}'
runs:
using: 'composite'
steps:
Expand All @@ -19,8 +19,9 @@ runs:
echo "step1/comm2"
shell: bash
- name: 'action-test action1 step2'
id: random-number-generator
run: echo "::set-output name=random-id::$(echo $RANDOM)"
id: step2
run: |
echo "out1=$(date '+%y%m%d-%H%M%S')" >> $GITHUB_ENV
shell: bash
- name: 'action-test action1 step3'
run: |
Expand Down
97 changes: 0 additions & 97 deletions workflows/git_submod_test.yml

This file was deleted.

0 comments on commit 58966de

Please sign in to comment.