Skip to content

Commit

Permalink
feat: cleanup, update for latest xcode/swift, add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
acmacalister committed Aug 19, 2023
1 parent 66a441a commit ea9a6ff
Show file tree
Hide file tree
Showing 24 changed files with 484 additions and 240 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:
tags:
- "*.*.*"
jobs:
release:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Set Latest Tag
id: vars
run: echo "tag=$(git describe --tags `git rev-list --tags --max-count=1`)" >> $GITHUB_OUTPUT
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec fastlane test
- run: bundle exec fastlane release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ steps.vars.outputs.tag }}
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit ea9a6ff

Please sign in to comment.