From d9e4f2d2ee2c9c4d301fd6c23d20eb87b6f74928 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Sun, 22 Sep 2024 17:10:31 -0400 Subject: [PATCH] fix justfile --- .github/workflows/push.yaml | 15 +-------------- Justfile | 4 ++-- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index a5cd290..d21746a 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -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/setup-plural@v0.2.0 - - name: Update service - run: plural cd services update @linode/cd-test --conf tag=sha-${GITHUB_SHA::7} \ No newline at end of file + GIT_COMMIT=${{ github.sha }} \ No newline at end of file diff --git a/Justfile b/Justfile index f06788c..7916c0b 100644 --- a/Justfile +++ b/Justfile @@ -1,5 +1,5 @@ release vsn: git checkout main; \ git pull --rebase; \ - git tag -a $vsn -m "new release"; \ - git push origin $vsn \ No newline at end of file + git tag -a {{vsn}} -m "new release"; \ + git push origin {{vsn}} \ No newline at end of file