Skip to content

Commit

Permalink
Update apcd workflow (#252)
Browse files Browse the repository at this point in the history
* update apcd workflow

* fix varsg

* remove run-name
  • Loading branch information
rstijerina authored Nov 13, 2023
1 parent 0eb77f8 commit fdbb909
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions .github/workflows/apcd-cms.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: APCD CMS Builds
name: APCD CMS Builds
on:
workflow_dispatch:
push:
branches: [ main ]
branches: [main]
paths:
- 'apcd-cms/**'
- "apcd-cms/**"

jobs:
build_commit:
Expand All @@ -13,29 +13,27 @@ jobs:
run:
working-directory: apcd-cms
steps:
- uses: actions/checkout@v2
- name: Get shortsha
- name: Checkout
uses: actions/checkout@v4

- name: Set shortsha and branch environment variables
id: vars
run: |
if [ -z "$EVENT_SHA" ]; then SHORT_SHA=${GITHUB_SHA::8}; else SHORT_SHA=${EVENT_SHA::8}; fi
echo ::set-output name=sha_short::${SHORT_SHA}
env:
EVENT_SHA: ${{ github.event.client_payload.sha }}
- name: Print shortsha
run: |
echo $SHORTSHA
env:
SHORTSHA: ${{ steps.vars.outputs.sha_short }}
- uses: docker/setup-buildx-action@v2
name: Setup Docker Builds
- uses: docker/login-action@v2
name: Log in to docker
echo "BRANCH_NAME=$(echo ${GITHUB_REF_NAME} | sed 's/[^[:alnum:]\.\_\-]/-/g')" >> "$GITHUB_OUTPUT";
echo "SHORT_SHA=${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT";
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v3
name: Build & push commit tagged Docker image

- name: Build & push commit tagged Docker image
uses: docker/build-push-action@v5
with:
context: apcd-cms
push: true
tags: taccwma/apcd-cms:${{ steps.vars.outputs.sha_short }}
tags: taccwma/apcd-cms:${{ steps.vars.outputs.SHORT_SHA }},taccwma/apcd-cms:${{ steps.vars.outputs.BRANCH_NAME }}

0 comments on commit fdbb909

Please sign in to comment.