Skip to content

Commit

Permalink
fix justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Sep 22, 2024
1 parent f1794f2 commit d9e4f2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,4 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
GIT_COMMIT=${{ github.sha }}
update-service:
needs: [publish-docker]
runs-on: ubuntu-20.04
env:
PLURAL_CONSOLE_TOKEN: ${{ secrets.CONSOLE_TOKEN }}
PLURAL_CONSOLE_URL: ${{ secrets.CONSOLE_URL }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: installing plural
uses: pluralsh/[email protected]
- name: Update service
run: plural cd services update @linode/cd-test --conf tag=sha-${GITHUB_SHA::7}
GIT_COMMIT=${{ github.sha }}
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
release vsn:
git checkout main; \
git pull --rebase; \
git tag -a $vsn -m "new release"; \
git push origin $vsn
git tag -a {{vsn}} -m "new release"; \
git push origin {{vsn}}

0 comments on commit d9e4f2d

Please sign in to comment.