socks5-server/.github/workflows/master.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2020-03-21 00:51:30 +03:00
name: "Latest tag from master branch"
2020-03-21 00:04:10 +03:00
env:
DOCKERHUB_REPOSITORY: serjs/go-socks5-proxy
2020-03-20 23:03:48 +03:00
2020-03-21 00:51:30 +03:00
on:
pull_request:
branches: master
push:
branches: master
2020-03-21 00:49:31 +03:00
jobs:
2020-03-21 00:51:30 +03:00
hadolint:
name: hadolint
2020-03-21 00:49:31 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
2020-03-21 00:51:30 +03:00
- name: hadolint
2021-07-07 14:41:35 +03:00
uses: hadolint/hadolint-action@v1.5.0
2021-07-07 14:56:25 +03:00
with:
ignore: DL3018
2020-03-20 23:03:48 +03:00
buildx:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v1
-
name: Set up Docker Buildx
id: buildx
2020-03-20 23:08:29 +03:00
uses: crazy-max/ghaction-docker-buildx@v1.1.0
2020-03-20 23:03:48 +03:00
-
name: Print builder available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
2020-03-21 00:31:24 +03:00
- name: Dockerhub login
2022-11-07 14:30:48 +03:00
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2020-03-20 23:03:48 +03:00
-
name: Run Buildx
run: |
docker buildx build \
2020-03-20 23:09:43 +03:00
--platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 \
2020-03-20 23:03:48 +03:00
--output "type=image,push=false" \
2020-03-21 00:06:06 +03:00
--push \
2020-03-21 00:33:06 +03:00
--tag "$DOCKERHUB_REPOSITORY:latest" \
2020-03-20 23:17:02 +03:00
.