Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Rogerson committed Sep 27, 2023
1 parent 721b0e0 commit 2ca84dc
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
- name: setup-docker
uses: docker-practice/actions-setup-docker@master
- name: Print tooling versions
run: |
node --version
Expand Down Expand Up @@ -58,6 +56,25 @@ jobs:
- run: mkdir -p _out/unit _out/e2e
- run: npm test -- --timeout=1m


version-bump:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: rickstaa/action-get-semver@v1
id: get_semver
with:
bump_level: "minor"
- name: Print current and next version
run: |
echo "Current version: ${{ steps.get_semver.outputs.current_version }}"
echo "Next version: ${{ steps.get_semver.outputs.next_version }}"
# release-to-staging:
# if: github.event_name == 'pull_request' && github.head_ref == 'main'
# needs: build-and-test
Expand Down

0 comments on commit 2ca84dc

Please sign in to comment.