Skip to content

Commit

Permalink
Raised MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
alexliesenfeld committed Jun 20, 2023
1 parent 82287f3 commit 8c61bed
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
on:
push:
# Pattern matched against refs/tags
tags:
- '**'
workflow_dispatch:
inputs:
tag:
description: 'Image Tag'
required: true
type: string
default: 'latest'
- 'v*.*(.*)*'

name: Docker

Expand All @@ -29,9 +21,14 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Write release version
run: |
VERSION=${GITHUB_REF_NAME#v}
echo Version: $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
push: false
tags: alexliesenfeld/httpmock:${{ env.RELEASE_VERSION }}

0 comments on commit 8c61bed

Please sign in to comment.