Skip to content

Commit

Permalink
fix(ci): update docker setup in release script (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
keplervital authored Feb 26, 2025
1 parent 8ded43d commit 326708e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: 'Release'

on:
workflow_dispatch: null
push:
branches:
- main
Expand All @@ -11,14 +12,18 @@ jobs:
release_projects:
name: 'release'
runs-on: ubuntu-latest
services:
docker:
image: docker:dind
options: --privileged # Enable Docker in Docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
steps:
- name: 'Checkout'
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: docker-practice/actions-setup-docker@master
timeout-minutes: 12
# Helps with debugging
- name: Show versions
run: |
Expand Down

0 comments on commit 326708e

Please sign in to comment.