smuellner/ISO639.swift

View on GitHub
.github/workflows/release_pod.xml

Summary

Maintainability
Test Coverage
name: Release pod

on:
  release:
    types:
      - published

jobs:
  build:

    runs-on: macos-latest

    steps:
    - uses: actions/checkout@v1
    - name: Build
      run: make build

    - name: Run tests
      run: make test-all

    - name: Install Cocoapods
      run: gem install cocoapods

    - name: Release Pod
       run: make release-pod
       env:
         COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}