Skip to content

Commit

Permalink
Add push trigger on tag and tried to fix path of artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
souzamari committed Oct 24, 2024
1 parent b122a10 commit a0852c3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ios-sdk-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: "iOS SDK CI"

on:
pull_request:
# push: # TODO: To be validated
# branches-ignore: '*'
# tags:
# - '^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$'

jobs:
setup:
Expand Down Expand Up @@ -50,7 +54,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: demo-swift
path: ${{ env.FL_OUTPUT_DIR }}/**
path: ${{ github.workspace }}/${{ env.FL_OUTPUT_DIR }}/**

build-demo-objc:
name: "Build Demo Objective-C"
Expand All @@ -69,4 +73,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: demo-objc
path: ${{ env.FL_OUTPUT_DIR }}/**
path: ${{ github.workspace }}/${{ env.FL_OUTPUT_DIR }}/**

0 comments on commit a0852c3

Please sign in to comment.