2.1.0 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build Wget2 | |
name: Build Wget2 b1 | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
#container: github.com/Jeffery186/docker-ubuntu-mingw:main | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Installation depends | |
run: | | |
chmod +x ./install.sh | |
/bin/bash ./install.sh | |
# sudo apt-get update | |
# sudo apt-get upgrade | |
# sudo apt-get install -y make gcc libc-dev mingw-w64 liblzma-dev | |
- name: Build | |
run: | | |
chmod +x build.sh | |
/bin/bash ./build.sh | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: wget2 | |
path: /usr/local/x86_64-w64-mingw32/bin/ |