Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix var names #630

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 5 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,22 @@ on:
workflow_run:
workflows: ["E2E Tests", "Unit Tests"]
types: [completed]

env:
TAG_NAME: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name || github.ref_name }}

jobs:
validate-tag:
name: Validate tag
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
steps:
- name: Validate Tag Format
- name: Validate tag Format
run: |
if [[ ! "${{ env.TAG_NAME }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "Error: Invalid tag format. Please use semver format (x.x.x)."
exit 1
fi

check-tag:
name: Check Tag
name: Check tag
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
steps:
Expand All @@ -40,10 +38,9 @@ jobs:
run: |
git fetch --tags
if git rev-parse "${{ env.TAG_NAME }}" >/dev/null 2>&1; then
echo "Tag already exists. Cancelling the release."
echo "tag already exists. Cancelling the release."
exit 1
fi

check-version:
name: Check Version
runs-on: ubuntu-latest
Expand All @@ -64,7 +61,6 @@ jobs:
exit 1
fi
shell: bash

update-version:
runs-on: ubuntu-latest
needs: check-version
Expand All @@ -83,7 +79,6 @@ jobs:
git config user.email "[email protected]"
git commit -am "chore: Update package.json version to ${{ env.TAG_NAME }}"
git push origin HEAD

create-release:
name: Create Release
runs-on: ubuntu-latest
Expand All @@ -92,19 +87,17 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v4

- name: Create Tag (only for workflow_dispatch)
- name: Create tag (only for workflow_dispatch)
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
git config user.name "github-actions"
git config user.email "[email protected]"
git tag ${{ env.TAG_NAME }}
git push origin ${{ env.TAG_NAME }}

- name: Set up GitHub CLI
run: |
sudo apt-get install -y gh
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token

- name: Create Release with GitHub CLI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading