From c03fe637bf48e4a5176c060cd780bc403f1ec2f7 Mon Sep 17 00:00:00 2001 From: brooke Date: Tue, 4 Mar 2025 00:44:59 -0500 Subject: [PATCH] update --- .forgejo/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index ea106d3..3ce1c9c 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -6,7 +6,7 @@ on: jobs: build-auto: container: - image: docker:dind + image: node:lts-bookworm steps: - uses: actions/checkout@v3 with: @@ -29,7 +29,6 @@ jobs: - name: Get tags from GitLab repository id: get_tags run: | - # Fetch the tags from the GitLab API TAGS=$(curl --header "PRIVATE-TOKEN: ${{ secrets.GITLAB_ACCESS_TOKEN }}" "https://gitlab.com/api/v4/projects/liberaforms%2Fliberaforms/repository/tags" | jq -r '.[].name') echo "::set-output name=tags::$TAGS" @@ -37,7 +36,6 @@ jobs: id: filter_tags run: | TAGS="${{ steps.get_tags.outputs.tags }}" - # Filter tags to exclude those that end with 'RC[0-9]' FILTERED_TAGS=$(echo "$TAGS" | grep -Ev 'RC[0-9]$' | sort -V | tail -n 1) echo "Latest tag excluding RC: $FILTERED_TAGS" echo "::set-output name=latest_tag::$FILTERED_TAGS"