Skip to content

Commit

Permalink
add docker-release win-x64
Browse files Browse the repository at this point in the history
  • Loading branch information
canonbrother committed Dec 19, 2023
1 parent 937c812 commit b709d4b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,26 @@ env:
GIT_VERSION: 1

jobs:
win-x64:
runs-on: ubuntu-latest
env:
TARGET: x86_64-w64-mingw32

steps:
- uses: actions/checkout@v3

- name: Populate environment
run: ./make.sh ci-export-vars

- name: Build and package
run: ./make.sh docker-release

- name: Publish artifact - x86_64-w64-mingw32
uses: actions/upload-artifact@v3
with:
name: defichain-${{ env.BUILD_VERSION }}-x86_64-w64-mingw32
path: ./build/defichain-${{ env.BUILD_VERSION }}-x86_64-w64-mingw32.tar.gz

build:
runs-on: ubuntu-latest
container: defi/ain-builder:latest
Expand Down Expand Up @@ -128,3 +148,4 @@ jobs:
set -e; ver=${{ env.BUILD_VERSION }}
docker tag defichain-${{ env.TARGET }}:${ver} defi/defichain:${ver}
docker push defi/defichain:${ver}

0 comments on commit b709d4b

Please sign in to comment.