mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
513 B
24 lines
513 B
name: Release |
|
|
|
on: |
|
push: |
|
tags: |
|
- "v[0-9]+.[0-9]+.[0-9]+" |
|
|
|
jobs: |
|
docker: |
|
name: Docker |
|
runs-on: ubuntu-latest |
|
steps: |
|
- name: Checkout code |
|
uses: actions/checkout@v2 |
|
|
|
- name: Build and push image |
|
uses: docker/build-push-action@v1 |
|
with: |
|
username: ${{ secrets.DOCKER_USERNAME }} |
|
password: ${{ secrets.DOCKER_PASSWORD }} |
|
repository: dexidp/dex |
|
tags: latest |
|
tag_with_ref: true |
|
add_git_labels: true
|
|
|