-
Notifications
You must be signed in to change notification settings - Fork 174
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] Stage to Main #3315
[Release] Stage to Main #3315
Changes from all commits
44ee6f1
11b61cc
ff58d7e
023541d
7cc4058
82098c7
e4b8e98
b2ec35a
5f8f157
2a87a8a
38abecd
6a93ab3
b72ed94
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ module.exports = { | |
], | ||
ignorePatterns: [ | ||
'/libs/deps/*', | ||
'/libs/navigation/dist/*', | ||
'/tools/loc/*', | ||
], | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Create a Release for Standalone Feds GlobalNav and Footer | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version' | ||
required: true | ||
type: string | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
release-feds: | ||
name: Release Standalone Feds | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
defaults: | ||
run: | ||
working-directory: ./libs/navigation | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Set up Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build Files | ||
run: node ./build.mjs | ||
|
||
- name: Generate tarball | ||
run: npm pack | ||
|
||
- name: Create Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
gh release create "feds-standalone-v${{ inputs.version }}" \ | ||
--repo="$GITHUB_REPOSITORY" \ | ||
--title="@adobecom/standalone-feds v${{ inputs.version }} Release" \ | ||
--generate-notes | ||
|
||
- name: Upload Files to Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: gh release upload "feds-standalone-v${{ inputs.version }}" "adobecom-standalone-feds-${{ inputs.version }}.tgz" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ logs/* | |
test-html-results/ | ||
test-results/ | ||
test-a11y-results/ | ||
libs/navigation/dist/ |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
milo/libs/blocks/footer/footer.js Line 349 in 82098c7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
milo/libs/blocks/footer/footer.js Line 359 in 82098c7
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
File ignored by default. Use a negated ignore pattern (like "--ignore-pattern '!<relative/path/to/filename>'") to override.