Skip to content

fix id

fix id #7

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Create test log.html
run: |
mkdir -p logs
echo "<html><body><h1>Test Log</h1><p>Test log content</p></body></html>" > logs/test_log.html
- name: Deploy test log
id: deploy
uses: everest/everest-ci/github-actions/deploy-ci-logs@feature/add-reusable-ci-workflow
with:
target_repo: 'PionixInternal/tmp-test-github-pages'
target_logs_name: 'something'
logs_dir: 'logs/'
github_token: ${{ secrets.SA_GITHUB_PAT }}
- name: Print deployed url
run: echo "Deployed to ${{ steps.deploy.outputs.deployed_url }}"