Skip to content

Commit

Permalink
Update linux-docker-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
costateixeira authored May 11, 2024
1 parent 237d72d commit 6c2eabc
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/linux-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,21 @@ jobs:
-e MYSQL_PASSWORD=test \
-e MYSQL_DATABASE=test \
-d mysql:8
- name: Create Draft Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Draft Release ${{ github.ref }}
draft: true
prerelease: false



- name: Docker Build
run: |
docker build \
Expand Down Expand Up @@ -73,17 +88,6 @@ jobs:
fhirserver -tests
- name: Create Draft Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Draft Release ${{ github.ref }}
draft: true
prerelease: false

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 6c2eabc

Please sign in to comment.