This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missing LICENSE move updatestream to github
- Loading branch information
Branko Wilhelm
committed
Aug 21, 2020
1 parent
c03b461
commit 677903e
Showing
7 changed files
with
743 additions
and
43 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: ["https://www.paypal.me/b2un0/EUR"] |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: 'release' | ||
|
||
on: | ||
create: | ||
tags: | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/[email protected] | ||
|
||
- name: Find and Replace | ||
uses: shitiomatic/str-replace@master | ||
with: | ||
find: "@REVISION@" | ||
replace: "${{ env.GITHUB_REF_SLUG }}" | ||
include: "./*.xml" | ||
|
||
- name: Archive Release | ||
uses: thedoctor0/zip-release@master | ||
with: | ||
filename: "${{ github.event.repository.name }}.zip" | ||
exclusions: '*.git* /screenshots/* updatestream.xml' | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ env.GITHUB_REF_SLUG }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ github.event.repository.name }}.zip | ||
asset_name: ${{ github.event.repository.name }}.zip | ||
asset_content_type: application/zip |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0"?> | ||
<updates> | ||
<update> | ||
<name>Xmap - jDownloads Integration</name> | ||
<element>com_jdownloads</element> | ||
<type>plugin</type> | ||
<client>0</client> | ||
<folder>xmap</folder> | ||
<version>1.0.0</version> | ||
<infourl>https://github.com/z-index-net/joomla-plugin-xmap-jdownloads</infourl> | ||
<downloads> | ||
<downloadurl type="full" format="zip">https://github.com/z-index-net/joomla-plugin-xmap-jdownloads/releases/download/1.0.0/joomla-plugin-xmap-jdownloads.zip</downloadurl> | ||
</downloads> | ||
<targetplatform name="joomla" version="^3\."/> | ||
</update> | ||
</updates> | ||
|