dind and install node ?
This commit is contained in:
parent
3770f74237
commit
14260f2de1
1 changed files with 11 additions and 6 deletions
|
|
@ -5,6 +5,7 @@ on:
|
|||
- main
|
||||
paths:
|
||||
- 'containers/${{ github.workflow }}/**'
|
||||
- 'containers/.forgejo/workflows/ansible.yml'
|
||||
workflow_dispatch: {}
|
||||
schedule:
|
||||
- cron: '0 20 * * 5'
|
||||
|
|
@ -18,12 +19,14 @@ jobs:
|
|||
- ${{ matrix.arch }}
|
||||
- docker
|
||||
container:
|
||||
image: alpine:edge
|
||||
image: docker:dind
|
||||
env:
|
||||
DOCKER_TLS_CERTDIR: ""
|
||||
steps:
|
||||
- name: Install Docker and Node.js
|
||||
- name: Install Node.js and dependencies
|
||||
run: |
|
||||
apk update
|
||||
apk add --no-cache docker docker-compose nodejs npm git bash
|
||||
apk add --no-cache nodejs npm git bash
|
||||
dockerd &
|
||||
sleep 5
|
||||
docker version
|
||||
|
|
@ -62,12 +65,14 @@ jobs:
|
|||
needs: build-and-push
|
||||
runs-on: amd64
|
||||
container:
|
||||
image: alpine:edge
|
||||
image: docker:dind
|
||||
env:
|
||||
DOCKER_TLS_CERTDIR: ""
|
||||
steps:
|
||||
- name: Install Docker and Node.js
|
||||
- name: Install Node.js and dependencies
|
||||
run: |
|
||||
apk update
|
||||
apk add --no-cache docker docker-compose nodejs npm git bash
|
||||
apk add --no-cache nodejs npm git bash
|
||||
dockerd &
|
||||
sleep 5
|
||||
docker version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue