Skip to content

dump inputs

dump inputs #14

Workflow file for this run

name: on-commit
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
id: checkout_repo
uses: actions/checkout@v4
with:
fetch-depth: 0
path: ./create-bosh-release-action
- name: Checkout repository test repo
id: checkout_test_repo
uses: actions/checkout@v4
with:
repository: 'orange-cloudfoundry/create-bosh-release-action-test-boshrelease'
fetch-depth: 0
# ref: v1.0
# token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
path: ./create-bosh-release-action-test-boshrelease
- name: Setup tests
id: setup_tests
run: |
du -a
git config --global --add safe.directory /github/workspace/create-bosh-release-action-test-boshrelease
- name: Test dev release
id: test_dev_release
uses: ./create-bosh-release-action/ # uses: ./.github/actions/my-private-repo/my-action #https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-an-action-inside-a-different-private-repository-than-the-workflow
with:
target_branch: main
dir: create-bosh-release-action-test-boshrelease