Skip to content

Commit

Permalink
Release CI fixed (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarampampam committed Jan 15, 2021
1 parent 9d5cead commit 6f590ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
docker-image:
name: Build docker image
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v2
Expand All @@ -30,7 +30,7 @@ jobs:
run: |
docker buildx build \
--platform ${{ steps.buildx.outputs.platforms }} \
--tag "tarampampam/3proxy:${{ steps.tag.outputs.value }} \
--tag "tarampampam/3proxy:${{ steps.tag.outputs.value }}" \
--tag "tarampampam/3proxy:latest" \
--tag "ghcr.io/tarampampam/3proxy:${{ steps.tag.outputs.value }}" \
--tag "ghcr.io/tarampampam/3proxy:latest" \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs: # Docs: <https://git.io/JvxXE>
--proxy http://127.0.0.1:3128 \
--connect-timeout 3 \
--max-time 3 \
https://github.com/robots.txt
https://www.cloudflare.com/robots.txt
- name: Try to use SOCKS proxy
if: matrix.auth != 'yes'
Expand All @@ -83,7 +83,7 @@ jobs: # Docs: <https://git.io/JvxXE>
--proxy socks5://127.0.0.1:1080 \
--connect-timeout 3 \
--max-time 3 \
https://github.com/robots.txt
https://www.cloudflare.com/robots.txt
- name: Try to use HTTP proxy (with auth)
if: matrix.auth == 'yes'
Expand All @@ -93,7 +93,7 @@ jobs: # Docs: <https://git.io/JvxXE>
--proxy-user evil:live \
--connect-timeout 3 \
--max-time 3 \
https://github.com/robots.txt
https://www.cloudflare.com/robots.txt
- name: Try to use SOCKS proxy (with auth)
if: matrix.auth == 'yes'
Expand All @@ -103,7 +103,7 @@ jobs: # Docs: <https://git.io/JvxXE>
--proxy-user evil:live \
--connect-timeout 3 \
--max-time 3 \
https://github.com/robots.txt
https://www.cloudflare.com/robots.txt
- name: Stop container
run: docker stop $(docker ps -a --filter ancestor=3proxy:local -q)

0 comments on commit 6f590ed

Please sign in to comment.