Skip to content

Commit

Permalink
added latest tagging and push steps
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Mar 16, 2023
1 parent 3725a08 commit c8e9c3e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push container
run: "IMG=ghcr.io/srl-labs/srl-controller:$GITHUB_REF_NAME make docker-push"
run: |
docker push ghcr.io/srl-labs/srl-controller:$GITHUB_REF_NAME
docker tag ghcr.io/srl-labs/srl-controller:$GITHUB_REF_NAME ghcr.io/srl-labs/srl-controller:latest
docker push ghcr.io/srl-labs/srl-controller:latest
- name: Create GH release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit c8e9c3e

Please sign in to comment.