TheDoctor0 Github contribution chart
TheDoctor0 Github Stats
TheDoctor0 Most Used Languages

Activity

20 Mar 2023

TheDoctor0

started

Started On 20 Mar 2023 at 09:54:33

TheDoctor0

started

Started On 20 Mar 2023 at 09:52:21

TheDoctor0

started

Started On 16 Mar 2023 at 08:51:51

TheDoctor0

started

Started On 16 Mar 2023 at 07:56:06

TheDoctor0

started

Started On 15 Mar 2023 at 04:15:38

TheDoctor0

started

Started On 13 Mar 2023 at 05:51:45

TheDoctor0

Update class-factory.blade.php view

Hello!

I have modified the class factory view to include some configurations on it.

Thanks!

Forked On 08 Mar 2023 at 06:28:47

TheDoctor0

@alibori I just tagged a 1.3.0 release that includes a customizable factory template.

Commented On 08 Mar 2023 at 06:28:47

TheDoctor0

Update class-factory.blade.php view

Created On 08 Mar 2023 at 06:28:47
Create Branch

TheDoctor0

Model factory generator for Laravel 6.x, 7.x, 8.x, 9.x., 10.x

On 08 Mar 2023 at 06:26:54

TheDoctor0

Drop active support for Laravel 6.x and 7.x.

Pushed On 08 Mar 2023 at 06:25:24

TheDoctor0

Update README.md.

Pushed On 08 Mar 2023 at 06:23:27

TheDoctor0

Update README.md

Pushed On 08 Mar 2023 at 06:03:16

TheDoctor0

Make factory view publishable to allow customization.

Pushed On 08 Mar 2023 at 06:01:34

TheDoctor0

Update README.md.

Pushed On 08 Mar 2023 at 05:37:48
Create Branch

TheDoctor0

Model factory generator for Laravel 6.x, 7.x, 8.x, 9.x., 10.x

On 08 Mar 2023 at 05:36:01

TheDoctor0

started

Started On 07 Mar 2023 at 07:55:16

TheDoctor0

Update class-factory.blade.php view

Hello!

I have modified the class factory view to include some configurations on it.

Thanks!

Forked On 06 Mar 2023 at 11:06:40

TheDoctor0

Hello @alibori. First and foremost thank you for this contribution!

I do think that the additional content of the test factories is highly opinionated and I'm quite hesitant to include it. Do you think that it would be useful to allow customizing the default class stub like instead?

Commented On 06 Mar 2023 at 11:06:40

TheDoctor0

started

Started On 04 Mar 2023 at 12:35:08

TheDoctor0

started

Started On 04 Mar 2023 at 10:38:14

TheDoctor0

started

Started On 04 Mar 2023 at 10:27:35

TheDoctor0

started

Started On 04 Mar 2023 at 10:24:14

TheDoctor0

Update branch name in usage example.

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Update README.

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Handle multiple exclusions with tar.

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Add support for custom command parameters.

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Update README.md

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Update action.yml

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Update README.md

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Update README.md

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Fix missing $INPUT_CUSTOM for zip.

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Allow tar.gz as a type - closes #38.

Pushed On 02 Mar 2023 at 07:34:10

TheDoctor0

Update README.md

Pushed On 02 Mar 2023 at 07:34:10
Issue Comment

TheDoctor0

problem generating zip from different branches for release

I'm trying to create a zip file for each branch I have to make a new release, my code

name: create archive
on:
  push:
    paths:
      - '**.txt'
jobs:
  build:
    runs-on: ubuntu-latest
    permissions:
      contents: write
    steps:
      - uses: actions/checkout@v2

      - name: Get next version
        uses: reecetech/version-increment@2022.10.3
        id: version
        with:
          scheme: semver
          increment: patch

      - name: Archive 1.19.3 Branch Release
        uses: thedoctor0/zip-release@0.7.1
        with:
          type: 'zip'
          filename: 'Dark_Everywhere_1.19.3.zip'
          exclusions: '*.git* /*node_modules/* .editorconfig *.md pack_hd.png'

      - name: Archive 1.19 Branch Release
        uses: actions/checkout@v2
        with:
          ref: '1.19'

      - name: Zip 1.19 Branch
        uses: thedoctor0/zip-release@0.7.1
        with:
          type: 'zip'
          filename: 'Dark_Everywhere_1.19.zip'
          exclusions: '*.git* /*node_modules/* .editorconfig *.md pack_hd.png'

      - name: Archive 1.18 Branch Release
        uses: actions/checkout@v2
        with:
          ref: '1.18'

      - name: Zip 1.18 Branch
        uses: thedoctor0/zip-release@0.7.1
        with:
          type: 'zip'
          filename: 'Dark_Everywhere_1.18.zip'
          exclusions: '*.git* /*node_modules/* .editorconfig *.md pack_hd.png'

      - name: Upload Release
        uses: ncipollo/release-action@v1
        with:
          tag: "${{ steps.version.outputs.version }}"
          name: "Dark Everywhere ${{ steps.version.outputs.version }}🌙"
          artifacts: "*.zip"
          token: ${{ secrets.GITHUB_TOKEN }} 

the problem is that every time the new release is released only the last zip file is kept

Dark_Everywhere_1.18.zip

but he was supposed to go up to 3 I tried using the dependency

ncipollo/release-action@v1 and the marvinpinto/action-automatic-releases@latest

but both give the same problem, which made me come to the conclusion that the problem may be that each zip that is generated is being subscribed on top of the other, then when the release is posted there is only the last file that was subscribed, you know how can i solve this problem?

Forked On 01 Mar 2023 at 10:51:18

TheDoctor0

Hey @vindocel. I'm afraid it's just how GitHub Actions works and it's not related to the zip actions at all. You can try using a matrix in a similar fashion like provided in one of the comments here: https://github.com/actions/create-release/issues/14

Commented On 01 Mar 2023 at 10:51:18
Create Branch

TheDoctor0

GitHub action that can be used to create release zip archive.

On 01 Mar 2023 at 10:44:38