Skip to content

Commit

Permalink
Merge pull request #1 from kairi003/main
Browse files Browse the repository at this point in the history
Update actions-docker.yml for docker compose
  • Loading branch information
hamukazu authored Aug 14, 2024
2 parents b9cb3b5 + 742ac2a commit db17709
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/actions-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
workflow_dispatch:

jobs:
release-pdf:
Expand Down Expand Up @@ -42,18 +43,13 @@ jobs:
echo ${{ steps.version.outputs.version }}
- name: buildx
if: success()
uses: docker/setup-buildx-action@v1
- name: install docker-compose
if: success()
run: |
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
uses: docker/setup-buildx-action@v1
- name: build
if: success()
run: docker-compose build
run: docker compose build
- name: run tex
if: success()
run: docker-compose run tex
run: docker compose run tex
- name: release
if: success()
uses: actions/create-release@v1
Expand Down

0 comments on commit db17709

Please sign in to comment.