-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: using GH artifacts to pass data between workflows
- Loading branch information
1 parent
b8b232a
commit cb69ecf
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,17 @@ jobs: | |
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# --- SETUP --- | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Download Artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: release-assets | ||
path: releases/ | ||
|
||
# --- CHANGELOG --- | ||
- name: Build Changelog | ||
id: github_release | ||
uses: mikepenz/release-changelog-builder-action@v4 | ||
|
@@ -29,6 +37,7 @@ jobs: | |
] | ||
} | ||
# --- RELEASE --- | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
|
@@ -85,6 +94,7 @@ jobs: | |
asset_name: save-my-phind_${{ github.ref_name }}_firefox.zip | ||
asset_content_type: application/zip | ||
|
||
# --- DISCUSSION --- | ||
- name: Create a new GitHub Discussion | ||
uses: abirismyname/[email protected] | ||
env: | ||
|
@@ -95,7 +105,7 @@ jobs: | |
repository-id: ${{ github.repository_id }} | ||
category-id: Announcements | ||
|
||
|
||
# --- PUBLISH --- | ||
- name: Browser Platform Publish | ||
uses: PlasmoHQ/[email protected] | ||
with: | ||
|