allow empty commits #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |