Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pottava committed Nov 28, 2019
1 parent b75ccb4 commit 0ea1014
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish Docker images

on:
push:
tags:
- "*"

jobs:
docker-image-2-0:
name: v2.0
if: github.event_name == 'push' && contains(github.ref, 'v2.0.')
runs-on: ubuntu-18.04
env:
IMAGE_NAME: docker.pkg.github.com/${{ github.repository }}/linux:2.0
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Build & Push
run: |
docker login docker.pkg.github.com -u owner -p ${{ secrets.GITHUB_TOKEN }}
docker build -t $IMAGE_NAME docker/linux/2.0/
docker push $IMAGE_NAME
timeout-minutes: 10
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

Supported tags and respective `Dockerfile` links:

・latest ([docker/linux/1.4/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/linux/1.4/Dockerfile))
・2.0rc ([docker/linux/2.0/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/linux/2.0/Dockerfile))
・latest ([docker/linux/2.0/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/linux/2.0/Dockerfile))
・2.0 ([docker/linux/2.0/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/linux/2.0/Dockerfile))
・1.4 ([docker/linux/1.4/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/linux/1.4/Dockerfile))
・1.4-win ([docker/windows/1.4/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/windows/1.4/Dockerfile))
・1 ([docker/linux/1.4/Dockerfile](https://github.com/pottava/aws-s3-proxy/blob/master/docker/linux/1.4/Dockerfile))
Expand Down

0 comments on commit 0ea1014

Please sign in to comment.