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:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: node:16-bullseye # Default for Forgejo
|
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
@ -21,12 +21,11 @@ jobs:
|
||||||
path: dist/
|
path: dist/
|
||||||
deploy:
|
deploy:
|
||||||
needs: [build]
|
needs: [build]
|
||||||
runs-on: docker # Defaults to Alpine in my runner
|
runs-on: node:16-bullseye # Required by actions/download-artifact
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
- name: List all files
|
- name: List all files
|
||||||
shell: ash
|
|
||||||
run: |
|
run: |
|
||||||
ls -la dist
|
ls -la dist
|
Loading…
Reference in a new issue