1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-19 22:15:23 +00:00

Fix: wget command not found (#874)

This commit is contained in:
Loyalsoldier 2021-04-07 03:41:27 +08:00 committed by GitHub
parent a962e8ac00
commit 324c7cb862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,10 @@ on:
branches:
- master
- v*
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/deb.yml"
release:
types: [prereleased]
@ -18,7 +22,7 @@ jobs:
- name: Install git
run: |
apt-get update
apt-get install -y git
apt-get install -y git wget
- name: Checkout codebase
uses: actions/checkout@v2