Skip to content

Commit

Permalink
ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
illinoisrobert committed Aug 5, 2024
1 parent 4ab6e39 commit d0c11f4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Branch name
id: branch_name
run: |
echo ::set-output name=SOURCE_NAME::${GITHUB_REF#refs/*/}
echo ::set-output name=SOURCE_BRANCH::${GITHUB_REF#refs/heads/}
echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand All @@ -23,4 +30,4 @@ jobs:

- uses: actions/checkout@v4
- name: Build the Docker image
run: cd beta && ./docker-build.sh test
run: cd beta && ./docker-build.sh test ${{ steps.branch_name.outputs.SOURCE_TAG }}

0 comments on commit d0c11f4

Please sign in to comment.