Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 09/19 #2564

Merged
merged 26 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3ddd01e
Update config.yml
aswanson-nr Aug 23, 2024
e1d1e5e
chore: Update example data source
stevula Aug 23, 2024
50a7812
Reduce description length
aswanson-nr Aug 23, 2024
b36630a
chore(deps): Bump express from 4.18.2 to 4.20.0 in /utils
dependabot[bot] Sep 11, 2024
2f3003d
feat: Combine release-artifact and release
d3caf Sep 13, 2024
ae6bdee
feat: Clean up validate quickstarts workflow
d3caf Sep 16, 2024
b1a6010
feat: Remove legacy workflows
d3caf Sep 16, 2024
156370e
feat: Remove vert.x data source from add data
mickeyryan42 Sep 17, 2024
2f5092f
feat: Remove C quickstart
mickeyryan42 Sep 17, 2024
7a437fa
Merge pull request #2555 from newrelic/andrew/NR-311556-actions-cleanup
d3caf Sep 17, 2024
ed98b3c
Fixed dead link in Blazor Server guide
chynesNR Sep 17, 2024
a9775ff
Updated the install configs for Flutter
pkudikyala Sep 18, 2024
ad7b73d
Merge pull request #2559 from chynesNR/patch-1
RamanaReddy8801 Sep 18, 2024
d9d7147
Merge pull request #2560 from pkudikyala/flutter-mobile
RamanaReddy8801 Sep 18, 2024
a8a61e6
feat: Added listing for drdroid
jcountsNR Sep 18, 2024
62c3dc1
removed website
jcountsNR Sep 18, 2024
cbe3be5
Merge pull request #2557 from newrelic/mickey/NR-307098-remove-c
mickeyryan42 Sep 18, 2024
cd0ff8d
Merge pull request #2556 from newrelic/mickey/NR-307149-vertx-data-so…
mickeyryan42 Sep 18, 2024
c01690e
feat: New NetScaler quickstart
jcountsNR Sep 19, 2024
2af2bdd
Merge pull request #2563 from newrelic/jc-nscaler
zstix Sep 19, 2024
b8be534
Merge pull request #2561 from newrelic/jc-drdroid
zstix Sep 19, 2024
786b2c9
chore: generate UUID(s) [skip ci]
nr-opensource-bot Sep 19, 2024
8e46fa5
chore: generate UUID(s) [skip ci]
nr-opensource-bot Sep 19, 2024
5df74b4
Merge pull request #2554 from newrelic/dependabot/npm_and_yarn/utils/…
zstix Sep 19, 2024
53d133a
fix: Use valid description length
aswanson-nr Sep 19, 2024
2f426f7
Merge pull request #2534 from newrelic/aswanson-nr-patch-2
zstix Sep 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .github/workflows/pr-project-board.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/preview-links.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/quickstarts.eu-production.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/quickstarts.production.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/quickstarts.staging.yml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/release-artifact.yml

This file was deleted.

47 changes: 45 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,27 @@ on:
push:
branches:
- main
tags:
- 'v*'

env:
THIRD_PARTY_GIT_AUTHOR_EMAIL: [email protected]
THIRD_PARTY_GIT_AUTHOR_NAME: nr-opensource-bot

defaults:
run:
shell: bash
working-directory: ./utils

permissions:
id-token: write # Required for attestation
attestations: write # Required for attestation
contents: write

jobs:
generate-third-party-notices:
# Don't run this if it's a tag push
if: ${{ startsWith(github.ref, 'refs/heads') }}
runs-on: ubuntu-latest
steps:
# Checkout fetch-depth: 2 because there's a check to see if package.json
Expand All @@ -24,13 +38,11 @@ jobs:
uses: "./.github/actions/bootstrap"

- name: Install OSS CLI
working-directory: ./utils
run: |
yarn global add @newrelic/newrelic-oss-cli

- name: Generate Third Party Notices
id: generate-notices
working-directory: ./utils
run: |
if [ ! -f "third_party_manifest.json" ]; then
echo "::error::third_party_manifest.json is missing. Must generate using the newrelic-oss-cli."
Expand All @@ -55,3 +67,34 @@ jobs:
else
echo "No change in package.json, not regenerating third-party notices"
fi
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
ref: ${{ github.ref }}
- name: Setup workspace
uses: "./.github/actions/bootstrap"
- name: Validate and generate artifact
uses: "./.github/actions/build-validate-artifact"
with:
output-artifact: 'true'
- name: Attest artifact
uses: actions/attest-build-provenance@1c608d11d69870c2092266b3f9a6f3abbf17002c
with:
subject-path: utils/build/*
- name: Create new release tag
# Only run if this is a branch push (we'll need a new tag)
if: ${{ startsWith(github.ref, 'refs/heads') }}
id: version
uses: "./.github/actions/bump-version-tag"
- name: Create release
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191
with:
files: utils/build/*
fail_on_unmatched_files: true
make_latest: true
# If we have a tag output from the previous step, use that as the tag
# name, otherwise use the current ref which should be the tag.
tag_name: ${{ steps.version.outputs.tag || github.ref }}
126 changes: 0 additions & 126 deletions .github/workflows/reusable.quickstart_submission.yml

This file was deleted.

Loading
Loading