Skip to content

Commit

Permalink
build and commit releases
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelSavignano committed Oct 16, 2020
1 parent f554578 commit 52db91a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buil-test-deploy.yml
Expand Up @@ -34,12 +34,12 @@ jobs:
run: shards install

- name: Build
run: crystal build src/cached_docker.cr --release --static --no-debug -o cached-docker
run: crystal build src/cached_docker.cr --release --static --no-debug -o releases/linux/cached-docker

- uses: actions/upload-artifact@v1
with:
name: cached-docker-ubuntu
path: cached-docker
path: releases/linux

- uses: stefanzweifel/git-auto-commit-action@v4.1.1
if: contains(github.ref, 'refs/tags/v')
Expand All @@ -63,12 +63,12 @@ jobs:
run: shards install

- name: Build
run: crystal build src/cached_docker.cr -o cached-docker
run: crystal build src/cached_docker.cr -o releases/macos/cached-docker

- uses: actions/upload-artifact@v1
with:
name: cached-docker-macos
path: cached-docker
path: releases/macos

- uses: stefanzweifel/git-auto-commit-action@v4.1.1
if: contains(github.ref, 'refs/tags/v')
Expand Down

0 comments on commit 52db91a

Please sign in to comment.