Skip to content

Move view injected view controllable to interface (#909) #28

Move view injected view controllable to interface (#909)

Move view injected view controllable to interface (#909) #28

Workflow file for this run

name: Artifactory
on:
push:
tags: ['[0-9]+.[0-9]+.[0-9]+']
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
jobs:
artifactory:
name: Artifactory
runs-on: macos-latest
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true
steps:
- name: Install dependencies
run: brew install jfrog-cli
- name: Checkout source
uses: actions/checkout@v4
- name: Build documentation
run: |
make docs open="no" DERIVED_DATA_PATH="$(mktemp -d)"
mkdir Documentation
mv .build/documentation/archive/Nodes.doccarchive Documentation
- name: Archive
run: tar -czf "Nodes-${GITHUB_REF_NAME}.tar.gz" Sources Documentation
- name: Upload
run: >
jf rt u
--url="https://tinder.jfrog.io/artifactory"
--access-token="${{ secrets.ARTIFACTORY_ACCESS_TOKEN }}"
--flat="true"
"Nodes-${GITHUB_REF_NAME}.tar.gz"
"swift-package-releases/Nodes/"