Skip to content

Commit

Permalink
runner fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
AleX committed Nov 17, 2024
1 parent a918196 commit 38462d2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ on: [push]

jobs:
Explore-github-Actions:
runs-on: alpine
runs-on:
group: ubuntu-runners
labels: ubuntu-20.04-16core
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Install Node.js
run: |
apk add --no-cache nodejs
apt install -y nodejs
- name: Check out repository code
uses: actions/checkout@v3
- name: List files in the repository
Expand All @@ -18,7 +20,7 @@ jobs:
- run: echo "🍏 This job's status is ${{ job.status }}."
- name: Install Docker
run: |
apk add --no-cache docker
apt install -y docker
- name: Start Docker service
run: |
dockerd &
Expand Down

0 comments on commit 38462d2

Please sign in to comment.