Skip to content

update changelog

update changelog #73

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ dev, staging, prod ]
pull_request:
branches: [ dev, staging, prod ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build the Docker image
run: docker build . --file Dockerfile --tag tapis/globus-proxy:${{ steps.extract_branch.outputs.branch }}
- name: Push the image to dockerhub
run: docker push --all-tags tapis/globus-proxy