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.yml も同梱する #4581

Merged
merged 1 commit into from
Jun 25, 2020
Merged
Changes from all commits
Commits
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
43 changes: 43 additions & 0 deletions src/Eccube/Command/PluginGenerateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->createNav($pluginDir, $code);
$this->createTwigBlock($pluginDir, $code);
$this->createConfigController($pluginDir, $code);
$this->createGithubActions($pluginDir);

$this->io->success(sprintf('Plugin was successfully created: %s %s %s', $name, $code, $version));
}
Expand Down Expand Up @@ -161,6 +162,7 @@ protected function createDirectories($pluginDir)
'Resource/doctrine',
'Resource/locale',
'Resource/template/admin',
'.github/workflows',
];

foreach ($dirs as $dir) {
Expand Down Expand Up @@ -191,6 +193,47 @@ protected function createConfig($pluginDir, $name, $code, $version)
$this->fs->dumpFile($pluginDir.'/composer.json', $source);
}


/**
* @param string $pluginDir
*/
protected function createGithubActions($pluginDir)
{
$source = '
name: Packaging for EC-CUBE Plugin
on:
release:
types: [ published ]
jobs:
deploy:
name: Build
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Packaging
working-directory: ../
run: |
rm -rf $GITHUB_WORKSPACE/.github
find $GITHUB_WORKSPACE -name "dummy" -delete
find $GITHUB_WORKSPACE -name ".git*" -and ! -name ".gitkeep" -print0 | xargs -0 rm -rf
chmod -R o+w $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE
tar cvzf ../${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.tar.gz ./*
- name: Upload binaries to release of TGZ
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ runner.workspace }}/${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.tar.gz
asset_name: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.tar.gz
tag: ${{ github.ref }}
overwrite: true
';

$this->fs->dumpFile($pluginDir.'/.github/workflows/release.yml', $source);
}


/**
* @param string $pluginDir
*/
Expand Down