Skip to content

Commit

Permalink
updating file, adding dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
aepfli authored Mar 23, 2023
1 parent bb729a6 commit f6a9402
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:
inputs:
tag_name:
description: "Tag for the functions runner image"
description: "Tag for the release being created"
type: "string"
required: true
examples_dir:
Expand All @@ -19,7 +19,7 @@ on:
required: false

jobs:
release-docs:
release-examples:
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand All @@ -43,7 +43,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Move old latest release examples folder
if: ${{ fromJson(steps.latest_release.outputs.data).tag_name == inputs.tag_name }}
if: ${{ fromJson(steps.latest_release.outputs.data).tag_name == inputs.tag_name }}
run: cp -R ./examples/* "${{ inputs.examples_dir }}"

- name: Push content
Expand Down

0 comments on commit f6a9402

Please sign in to comment.