Skip to content

Commit

Permalink
[VERSION] Ensure all Docker release code has the correct build version.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Mar 9, 2020
1 parent 2b04905 commit 9c6e380
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@master
- name: Build project
run: mvn package -Pci -DskipTests -Dassembly-name=RC1
run: mvn package -Pci -DskipTests -Dassembly-name=RELEASE
- name: Upload release artifact
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: RELEASE.md
files: |
comixed-app/target/artifacts/comixed-app-0.5.0-0.1-RC1.zip
comixed-app/target/artifacts/comixed-app-0.6.0-0-RELEASE.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAINTAINER Pidockmedia "pidockmedia@gmail.com"

RUN mkdir /app /ul
WORKDIR /ul
RUN wget -q -O comixed-app.zip https://github.com/comixed/comixed/releases/download/0.6.0-0-20191205032145/comixed-app-0.6.0-0-20191205032145.zip
RUN wget -q -O comixed-app.zip https://github.com/comixed/comixed/releases/download/v0.6.0-0/comixed-app-0.6.0-0-RELEASE.zip
RUN unzip *.zip
RUN rm *.zip
RUN mv comixed*/bin/comixed-app*.jar /app/comixed-app.jar
Expand Down

0 comments on commit 9c6e380

Please sign in to comment.