Workflow to test dist dir (#7356)
This commit is contained in:
21
.github/workflows/test-dist-upload.yml
vendored
Normal file
21
.github/workflows/test-dist-upload.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: Test dist upload
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
# Fetch all tags
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Make test dist
|
||||
run: |
|
||||
mkdir dist
|
||||
echo "test" > dist/test
|
||||
Reference in New Issue
Block a user