testing actions
This commit is contained in:
parent
1c48e8d089
commit
df2e9a107b
1 changed files with 2 additions and 3 deletions
|
@ -7,7 +7,7 @@ jobs:
|
|||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:16-bullseye # Default for Forgejo
|
||||
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install dependencies
|
||||
|
@ -21,12 +21,11 @@ jobs:
|
|||
path: dist/
|
||||
deploy:
|
||||
needs: [build]
|
||||
runs-on: docker # Defaults to Alpine in my runner
|
||||
runs-on: node:16-bullseye # Required by actions/download-artifact
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
- name: List all files
|
||||
shell: ash
|
||||
run: |
|
||||
ls -la dist
|
Loading…
Reference in a new issue