Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

ci: adds support for Github actions publishing Nuget package #182

ci: adds support for Github actions publishing Nuget package

ci: adds support for Github actions publishing Nuget package #182

Workflow file for this run

name: Publish Package
on:
pull_request:
branches: [main, 'feat/**']
paths-ignore:
- '**.md'
workflow_dispatch:
inputs:
run_tests:
description: 'If true, run unit tests, otherwise skip them.'
required: false
default: 'true'
dry_run:
description: 'Is this a dry run. If so no package will be published.'
type: boolean
required: true
jobs:
# Building is done on mac runner due to xcode build dependencies
build:
runs-on: macos-13
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # If you only need the current version keep this
- uses: launchdarkly/gh-actions/actions/[email protected]
name: Get secrets
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/placeholder = placeholder'
- name: CI check
uses: ./.github/actions/ci
run_tests: ${{ inputs.run_tests }}

Check failure on line 38 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Publish Package

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 38, Col: 9): Unexpected value 'run_tests' .github/workflows/publish.yml (Line: 110, Col: 9): Unexpected value 'dry_run'
- name: Build
uses: ./.github/actions/build
- name: Retain artifacts for other jobs to use
uses: actions/upload-artifact@v3
with:
name: dir-bin-release
path: src/LaunchDarkly.ClientSdk/bin/Release/
retention-days: 1
# Signing DLLs is done on Ubuntu due to Digicert tooling compatibility
sign-dlls:
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # If you only need the current version keep this
- name: Restore release artifacts
uses: actions/download-artifact@v3
with:
name: dir-bin-release
path: src/LaunchDarkly.ClientSdk/bin/Release/
- uses: launchdarkly/gh-actions/actions/[email protected]
name: Get secrets
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/digicert/host = DIGICERT_HOST,/production/common/releasing/digicert/api_key = DIGICERT_API_KEY,/production/common/releasing/digicert/client_cert_file_b64 = DIGICERT_CLIENT_CERT_FILE_B64,/production/common/releasing/digicert/client_cert_password = DIGICERT_CLIENT_CERT_PASSWORD,/production/common/releasing/digicert/code_signing_cert_sha1_hash = DIGICERT_CODE_SIGNING_CERT_SHA1_HASH'
- name: Sign DLLs
uses: ./.github/actions/sign-dlls
- name: Retain signed artifacts
uses: actions/upload-artifact@v3
with:
name: dir-bin-release-signed
path: src/LaunchDarkly.ClientSdk/bin/Release/
retention-days: 1
# Packing is done on Mac due to ios workload requirements.
pack-nupkg:
runs-on: macos-13
needs: sign-dlls
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # If you only need the current version keep this
- name: Restore release artifacts
uses: actions/download-artifact@v3
with:
name: dir-bin-release-signed
path: src/LaunchDarkly.ClientSdk/bin/Release/
- uses: launchdarkly/gh-actions/actions/[email protected]
name: Get secrets
with:
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
ssm_parameter_pairs: '/production/common/releasing/nuget/api_key = NUGET_API_KEY'
- name: Publish Nupkg
uses: ./.github/actions/pack
dry_run: ${{ inputs.dry_run }}
- name: Retain unsigned nupkg
uses: actions/upload-artifact@v3
with:
name: unsigned-nupkg
path: nupkgs/
retention-days: 1