Skip to content

Commit

Permalink
Add Docker setup to build workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
oleander committed Nov 8, 2024
1 parent aa9753b commit 67c04ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Install Docker
uses: docker/setup-buildx-action@v3

- name: Build Docker image with Ruby version
run: docker build --build-arg RUBY_VERSION=3.3 -t git-fame -f .devcontainer/Dockerfile .

Expand All @@ -36,6 +39,9 @@ jobs:
with:
fetch-depth: 0

- name: Install Docker
uses: docker/setup-buildx-action@v3

- name: Build Docker image with Ruby version
run: docker build --build-arg RUBY_VERSION=${{ matrix.ruby }} -t git-fame -f .devcontainer/Dockerfile .

Expand Down

0 comments on commit 67c04ea

Please sign in to comment.