Skip to content

Release v1.2.2

Release v1.2.2 #234

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Tests
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Build
run: ./sv -vvv build
- name: SandVault Tests
env:
VERBOSE: 1
run: ./scripts/tests
- name: Swift/Xcode Tests
env:
XCODE_DESTINATION: platform=macOS,arch=arm64
VERBOSE: 1
run: ./tests/tests
tag-version:
name: Tag Version
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
fetch-tags: true
- name: Tag version if updated
env:
GH_TOKEN: ${{ github.token }}
run: .github/scripts/tag-version