From 153fc6e735d01cd6d439b6142ffa6224d0c55ea7 Mon Sep 17 00:00:00 2001 From: test Date: Sun, 9 Jul 2023 14:51:29 +0900 Subject: [PATCH 01/41] Create 7.txt --- file/7.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 file/7.txt diff --git a/file/7.txt b/file/7.txt new file mode 100644 index 0000000..c793025 --- /dev/null +++ b/file/7.txt @@ -0,0 +1 @@ +7 \ No newline at end of file From 6f5cc31556dfdc72f906affb4788bf1fed364488 Mon Sep 17 00:00:00 2001 From: test Date: Sun, 9 Jul 2023 15:04:17 +0900 Subject: [PATCH 02/41] Create 8.txt --- file/8.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 file/8.txt diff --git a/file/8.txt b/file/8.txt new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/file/8.txt @@ -0,0 +1 @@ +8 From 1d8dccd4184ac1d186bf382301ec077f8637f3d7 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:03:55 +0900 Subject: [PATCH 03/41] Create main.yml --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 83cb6c88154e7321ce3430d6f979ea7f6a0678f2 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:05:39 +0900 Subject: [PATCH 04/41] Create test-github-actions.yml --- .github/workflows/test-github-actions.yml | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/test-github-actions.yml diff --git a/.github/workflows/test-github-actions.yml b/.github/workflows/test-github-actions.yml new file mode 100644 index 0000000..21e0a82 --- /dev/null +++ b/.github/workflows/test-github-actions.yml @@ -0,0 +1,35 @@ +name: learn-github-actions +on: + push: + branches: [ master, dev ] + pull_request: + branches: [ master ] + paths: + - "**.js" + paths-ignore: + - "doc/**" +jobs: + build: + strategy: + matrix: + node-version: [10.x, 12.x] + + runs-on: ubuntu-latest + steps: + - name: Checkout source code + uses: actions/checkout@v2 + + - name: My First Step + run: + npm install + npm test + npm build + + - name: Cache yarn dependencies + uses: actions/cache@v1 + id: yarn-cache + with: + path: node_modules + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- From 4553e0d181f12ab0f8c37d10cea41a3beec235b9 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:06:06 +0900 Subject: [PATCH 05/41] Create github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml new file mode 100644 index 0000000..711d62e --- /dev/null +++ b/.github/workflows/github-actions-demo.yml @@ -0,0 +1,17 @@ +name: GitHub Actions Demo +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "๐ŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "๐Ÿง This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "๐Ÿ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v2 + - run: echo "๐Ÿ’ก The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "๐Ÿ–ฅ๏ธ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "๐Ÿ This job's status is ${{ job.status }}." From d24d7faf722e42bf597400aa1990a39860f48f11 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:12:54 +0900 Subject: [PATCH 06/41] Create python.yml --- .github/workflows/python.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 60fb822fec19ddfe1aa6cc0b0c3f137ec2f62e84 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:15:15 +0900 Subject: [PATCH 07/41] Update python-demo.yml 3.8 --- .github/workflows/github-actions-demo.yml | 31 +++++++++++++---------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 711d62e..6d7b6e8 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -1,17 +1,20 @@ -name: GitHub Actions Demo -on: [push] +name: Python + +on: workflow_dispatch + jobs: - Explore-GitHub-Actions: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + steps: - - run: echo "๐ŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "๐Ÿง This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "๐Ÿ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v2 - - run: echo "๐Ÿ’ก The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "๐Ÿ–ฅ๏ธ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "๐Ÿ This job's status is ${{ job.status }}." + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 303a70afc7d286cd7b636e8dc511b7975ee35b7a Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:30:50 +0900 Subject: [PATCH 08/41] Create first.yml --- .github/workflows/first.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/first.yml diff --git a/.github/workflows/first.yml b/.github/workflows/first.yml new file mode 100644 index 0000000..28054f5 --- /dev/null +++ b/.github/workflows/first.yml @@ -0,0 +1 @@ +name: Our First Workflow From 4cdb0a638e99840404fd120c973dc8a532f30474 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:41:44 +0900 Subject: [PATCH 09/41] 3.8 --- Python.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Python.yml diff --git a/Python.yml b/Python.yml new file mode 100644 index 0000000..0c8b212 --- /dev/null +++ b/Python.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" \ No newline at end of file From 560d85492195f7901cea1517c540b20b8d86cc3c Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:42:56 +0900 Subject: [PATCH 10/41] Create set.yml --- .github/workflows/set.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/set.yml diff --git a/.github/workflows/set.yml b/.github/workflows/set.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/set.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 8f392786be0f3b47d602ba52e7d93c9f5511601f Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:45:05 +0900 Subject: [PATCH 11/41] Create github-actions-demo1.yml --- .github/workflows/github-actions-demo1.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/github-actions-demo1.yml diff --git a/.github/workflows/github-actions-demo1.yml b/.github/workflows/github-actions-demo1.yml new file mode 100644 index 0000000..711d62e --- /dev/null +++ b/.github/workflows/github-actions-demo1.yml @@ -0,0 +1,17 @@ +name: GitHub Actions Demo +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "๐ŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "๐Ÿง This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "๐Ÿ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v2 + - run: echo "๐Ÿ’ก The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "๐Ÿ–ฅ๏ธ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ github.workspace }} + - run: echo "๐Ÿ This job's status is ${{ job.status }}." From e316a4e80363ece06e15c0e3369ffc81e92b5d6b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:53:38 +0900 Subject: [PATCH 12/41] Create 910.yaml --- .github/workflows/910.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/910.yaml diff --git a/.github/workflows/910.yaml b/.github/workflows/910.yaml new file mode 100644 index 0000000..9fd8a2d --- /dev/null +++ b/.github/workflows/910.yaml @@ -0,0 +1,22 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + + steps: + - uses: actions/checkout@v3 + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" + - name: Upload Artifacts + uses: actions/upload-Artifact@v3 + with: + name: python${{ matrix.python-verson }}_artifac + + From a07c29dd35e120fe58b5b53d67a52b6228363c24 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:09 +0900 Subject: [PATCH 13/41] Delete Python.yml --- Python.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Python.yml diff --git a/Python.yml b/Python.yml deleted file mode 100644 index 0c8b212..0000000 --- a/Python.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" \ No newline at end of file From ca41978b638f0978d824d72d1827a438d5d9ee64 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:26 +0900 Subject: [PATCH 14/41] Delete test-github-actions.yml --- .github/workflows/test-github-actions.yml | 35 ----------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/test-github-actions.yml diff --git a/.github/workflows/test-github-actions.yml b/.github/workflows/test-github-actions.yml deleted file mode 100644 index 21e0a82..0000000 --- a/.github/workflows/test-github-actions.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: learn-github-actions -on: - push: - branches: [ master, dev ] - pull_request: - branches: [ master ] - paths: - - "**.js" - paths-ignore: - - "doc/**" -jobs: - build: - strategy: - matrix: - node-version: [10.x, 12.x] - - runs-on: ubuntu-latest - steps: - - name: Checkout source code - uses: actions/checkout@v2 - - - name: My First Step - run: - npm install - npm test - npm build - - - name: Cache yarn dependencies - uses: actions/cache@v1 - id: yarn-cache - with: - path: node_modules - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- From 855d49c7cb6c4891efee60e691ee4976405ec96d Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:35 +0900 Subject: [PATCH 15/41] Delete set.yml --- .github/workflows/set.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/set.yml diff --git a/.github/workflows/set.yml b/.github/workflows/set.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/set.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From baa10949182a1537e802be2d8c022a8a662b78fc Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 16:59:44 +0900 Subject: [PATCH 16/41] Delete python.yml --- .github/workflows/python.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/python.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From 6380ec017820b67cc3aa1742131b406c1c19803b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:21 +0900 Subject: [PATCH 17/41] Delete python.yaml --- .github/workflows/python.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/python.yaml diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml deleted file mode 100644 index 2715676..0000000 --- a/.github/workflows/python.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From 5b1718d8ba009f14c627d37c14f7feb9fa2e3de0 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:35 +0900 Subject: [PATCH 18/41] Delete 910.yaml --- .github/workflows/910.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/910.yaml diff --git a/.github/workflows/910.yaml b/.github/workflows/910.yaml deleted file mode 100644 index 9fd8a2d..0000000 --- a/.github/workflows/910.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8", "3.9", "3.10"] - - steps: - - uses: actions/checkout@v3 - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" - - name: Upload Artifacts - uses: actions/upload-Artifact@v3 - with: - name: python${{ matrix.python-verson }}_artifac - - From bb2b25f6dc8791ba39ea7759a66f69929983da29 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:42 +0900 Subject: [PATCH 19/41] Delete main.yml --- .github/workflows/main.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From 07cde99df1389e14c7364cb07288b49593635ca8 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:49 +0900 Subject: [PATCH 20/41] Delete gitleaks.yml --- .github/workflows/gitleaks.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/gitleaks.yml diff --git a/.github/workflows/gitleaks.yml b/.github/workflows/gitleaks.yml deleted file mode 100644 index 1d5b89b..0000000 --- a/.github/workflows/gitleaks.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: gitleaks - -on: workflow_dispatch - -jobs: - scan: - name: gitleaks - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: gitleaks/gitleaks-action@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 0f615694def85352139a18bd9da04dc81b1c75b7 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:01:56 +0900 Subject: [PATCH 21/41] Delete first.yml --- .github/workflows/first.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/workflows/first.yml diff --git a/.github/workflows/first.yml b/.github/workflows/first.yml deleted file mode 100644 index 28054f5..0000000 --- a/.github/workflows/first.yml +++ /dev/null @@ -1 +0,0 @@ -name: Our First Workflow From e53534bee89c269635f0a571d4b98dbfe99ffa80 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:02:03 +0900 Subject: [PATCH 22/41] Delete github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml deleted file mode 100644 index 6d7b6e8..0000000 --- a/.github/workflows/github-actions-demo.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Python - -on: workflow_dispatch - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8"] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" From c1077fe0a77374267e344b32424456d2c5b166b2 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:02:09 +0900 Subject: [PATCH 23/41] Delete github-actions-demo1.yml --- .github/workflows/github-actions-demo1.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/github-actions-demo1.yml diff --git a/.github/workflows/github-actions-demo1.yml b/.github/workflows/github-actions-demo1.yml deleted file mode 100644 index 711d62e..0000000 --- a/.github/workflows/github-actions-demo1.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: GitHub Actions Demo -on: [push] -jobs: - Explore-GitHub-Actions: - runs-on: ubuntu-latest - steps: - - run: echo "๐ŸŽ‰ The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "๐Ÿง This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "๐Ÿ”Ž The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v2 - - run: echo "๐Ÿ’ก The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "๐Ÿ–ฅ๏ธ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ github.workspace }} - - run: echo "๐Ÿ This job's status is ${{ job.status }}." From c753eaee13bf166c0cb2a6fc15a42bed5f553998 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:10:39 +0900 Subject: [PATCH 24/41] Create python.yml --- .github/workflows/python.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From e912327346a97b5f858d8737d510aadd1a2ace75 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:14:39 +0900 Subject: [PATCH 25/41] Create Python-test.yml --- .github/workflows/Python-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/Python-test.yml diff --git a/.github/workflows/Python-test.yml b/.github/workflows/Python-test.yml new file mode 100644 index 0000000..5f0f888 --- /dev/null +++ b/.github/workflows/Python-test.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: +build: + +runs-on: ubuntu-latest +strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + +steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From c7203775b959de6bded79475f050ddcb203d022b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:16:02 +0900 Subject: [PATCH 26/41] Update Python-test.yml --- .github/workflows/Python-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Python-test.yml b/.github/workflows/Python-test.yml index 5f0f888..0b0814c 100644 --- a/.github/workflows/Python-test.yml +++ b/.github/workflows/Python-test.yml @@ -3,14 +3,14 @@ name: Python on: workflow_dispatch jobs: -build: + build: -runs-on: ubuntu-latest -strategy: - matrix: + runs-on: ubuntu-latest + strategy: + matrix: python-version: ["3.8", "3.9", "3.10"] -steps: + steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 From a953173472ad10fcf11c09b5a824018825cfdf0b Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:18:30 +0900 Subject: [PATCH 27/41] Create python-9-10-test.yml --- .github/workflows/python-9-10-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/python-9-10-test.yml diff --git a/.github/workflows/python-9-10-test.yml b/.github/workflows/python-9-10-test.yml new file mode 100644 index 0000000..5fe75e9 --- /dev/null +++ b/.github/workflows/python-9-10-test.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 3ccd4b353d35903d7a30ec3bcfa9f25be34e4771 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:29:33 +0900 Subject: [PATCH 28/41] Create assignment_output_by_version.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions์„ ์‚ฌ์šฉํ•ด์„œ ํŒŒ์ด์ฌ 3.8 ~ 3.10 ๋ฒ„์ „ ๋ณ„๋กœ ์ถœ๋ ฅ ๊ฒฐ๊ณผ๋ฅผ ์ €์žฅ --- .../assignment_output_by_version.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/assignment_output_by_version.yml diff --git a/.github/workflows/assignment_output_by_version.yml b/.github/workflows/assignment_output_by_version.yml new file mode 100644 index 0000000..6d7b6e8 --- /dev/null +++ b/.github/workflows/assignment_output_by_version.yml @@ -0,0 +1,20 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 54badc2a02da97d15ac3ec77fa3452085d8131e2 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:32:02 +0900 Subject: [PATCH 29/41] Update assignment_output_by_version.yml --- .github/workflows/assignment_output_by_version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assignment_output_by_version.yml b/.github/workflows/assignment_output_by_version.yml index 6d7b6e8..5fe75e9 100644 --- a/.github/workflows/assignment_output_by_version.yml +++ b/.github/workflows/assignment_output_by_version.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8"] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 From 71fd965f46fdcf046849097a7d4b0d612076e074 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:32:30 +0900 Subject: [PATCH 30/41] Update assignment_output_by_version.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub Actions์„ ์‚ฌ์šฉํ•ด์„œ ํŒŒ์ด์ฌ 3.8 ~ 3.10 ๋ฒ„์ „ ๋ณ„๋กœ ์ถœ๋ ฅ ๊ฒฐ๊ณผ๋ฅผ ์ €์žฅ ์ตœ์ข…๋ณธ์ž…๋‹ˆ๋‹ค --- .github/workflows/assignment_output_by_version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assignment_output_by_version.yml b/.github/workflows/assignment_output_by_version.yml index 5fe75e9..d165d1c 100644 --- a/.github/workflows/assignment_output_by_version.yml +++ b/.github/workflows/assignment_output_by_version.yml @@ -17,4 +17,4 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Display Python version - run: python -c "import sys; print(sys.version)" + run: python -c "import sys; print(sys.version)" From f20d937e0c85416639d2a581ef42a238eff041bb Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:37:44 +0900 Subject: [PATCH 31/41] Update python-9-10-test.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ์ž๋ฃŒ ์ฐธ๊ณ  --- .github/workflows/python-9-10-test.yml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-9-10-test.yml b/.github/workflows/python-9-10-test.yml index 5fe75e9..be55f3d 100644 --- a/.github/workflows/python-9-10-test.yml +++ b/.github/workflows/python-9-10-test.yml @@ -11,10 +11,18 @@ jobs: python-version: ["3.8", "3.9", "3.10"] steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)" + - name: Create a file + run: echo ${{ matrix.node-version }} > my_file.txt + - name: Accidentally upload to the same artifact via multiple jobs + uses: actions/upload-artifact@v3 + with: + name: my-artifact + path: ${{ github.workspace }} + + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" From 7ed192c5503cd16cdb29c8e2406e6a8b6ca58305 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:40:05 +0900 Subject: [PATCH 32/41] Update assignment_output_by_version.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ์•„ํ‹ฐํŒฉํŠธ ์ €์žฅ --- .github/workflows/assignment_output_by_version.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/assignment_output_by_version.yml b/.github/workflows/assignment_output_by_version.yml index d165d1c..18d7424 100644 --- a/.github/workflows/assignment_output_by_version.yml +++ b/.github/workflows/assignment_output_by_version.yml @@ -18,3 +18,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Display Python version run: python -c "import sys; print(sys.version)" + - name: Upload Artifacts + uses: actions/upload-Artifact@v3 + with: + name: python${{ matrix.python-verson }}_artifact From fe1d10eb55b429168c1d4707f23ced0afb369ad2 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:44:49 +0900 Subject: [PATCH 33/41] Update python-9-10-test.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit node ์ˆ˜์ • --- .github/workflows/python-9-10-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-9-10-test.yml b/.github/workflows/python-9-10-test.yml index be55f3d..46fbf35 100644 --- a/.github/workflows/python-9-10-test.yml +++ b/.github/workflows/python-9-10-test.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Create a file - run: echo ${{ matrix.node-version }} > my_file.txt + run: echo ${{ matrix.python-version }} > my_file.txt - name: Accidentally upload to the same artifact via multiple jobs uses: actions/upload-artifact@v3 with: From eed33040ec36305f95c62954f01f2169dac34997 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:53:28 +0900 Subject: [PATCH 34/41] Update python-9-10-test.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ํŒŒ์ผ ๋ฎ์–ด์”Œ์›Œ์ง€์ง€ ์•Š๋„๋ก ์ฝ”๋“œ ์ถ”๊ฐ€ --- .github/workflows/python-9-10-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-9-10-test.yml b/.github/workflows/python-9-10-test.yml index 46fbf35..b0b3e0e 100644 --- a/.github/workflows/python-9-10-test.yml +++ b/.github/workflows/python-9-10-test.yml @@ -13,10 +13,12 @@ jobs: steps: - name: Create a file run: echo ${{ matrix.python-version }} > my_file.txt + - name: Accidentally upload to the same artifact via multiple jobs uses: actions/upload-artifact@v3 + with: - name: my-artifact + name: my-artifact-${{ matrix.python-version }} path: ${{ github.workspace }} - uses: actions/checkout@v3 From e8f41aa85d010897b371a2e44d75fb7ed69d6b61 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:55:43 +0900 Subject: [PATCH 35/41] Rename assignment_output_by_version.yml to output_by_version.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ํŒŒ์ผ ์ด๋ฆ„ ๋ณ€๊ฒฝ --- .../{assignment_output_by_version.yml => output_by_version.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{assignment_output_by_version.yml => output_by_version.yml} (100%) diff --git a/.github/workflows/assignment_output_by_version.yml b/.github/workflows/output_by_version.yml similarity index 100% rename from .github/workflows/assignment_output_by_version.yml rename to .github/workflows/output_by_version.yml From ac3a3dc06a4ce94f64ef8e7b48f769ac3dbca3d8 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:56:55 +0900 Subject: [PATCH 36/41] Rename .github/workflows/python-9-10-test.yml to .github/TEST-workflowspython-9-10.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ์ด๋ฆ„ ๋ณ€๊ฒฝ --- .../python-9-10-test.yml => TEST-workflowspython-9-10.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{workflows/python-9-10-test.yml => TEST-workflowspython-9-10.yml} (100%) diff --git a/.github/workflows/python-9-10-test.yml b/.github/TEST-workflowspython-9-10.yml similarity index 100% rename from .github/workflows/python-9-10-test.yml rename to .github/TEST-workflowspython-9-10.yml From 2c62fdefbe084cdd1f2439830d42df0e18144263 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:58:00 +0900 Subject: [PATCH 37/41] Rename Python-test.yml to TEST-Python-test.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ์ด๋ฆ„ ๋ณ€๊ฒฝ --- .github/workflows/{Python-test.yml => TEST-Python-test.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{Python-test.yml => TEST-Python-test.yml} (100%) diff --git a/.github/workflows/Python-test.yml b/.github/workflows/TEST-Python-test.yml similarity index 100% rename from .github/workflows/Python-test.yml rename to .github/workflows/TEST-Python-test.yml From 00b2a71d418a52167c67080992a845bd18c08c4f Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:58:44 +0900 Subject: [PATCH 38/41] Rename .github/TEST-workflowspython-9-10.yml to .github/workspace/TEST-workflowspython-9-10.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ๊ฒฝ๋กœ ์žฌ์„ค์ • --- .github/{ => workspace}/TEST-workflowspython-9-10.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workspace}/TEST-workflowspython-9-10.yml (100%) diff --git a/.github/TEST-workflowspython-9-10.yml b/.github/workspace/TEST-workflowspython-9-10.yml similarity index 100% rename from .github/TEST-workflowspython-9-10.yml rename to .github/workspace/TEST-workflowspython-9-10.yml From c499dfafbf826d386b1c6e15d2de075abf7ce2d3 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:59:18 +0900 Subject: [PATCH 39/41] Rename TEST-workflowspython-9-10.yml to TEST-workflowspython-9-10.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ๊ฒฝ๋กœ ์žฌ์„ค์ • --- .github/{workspace => workflows}/TEST-workflowspython-9-10.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{workspace => workflows}/TEST-workflowspython-9-10.yml (100%) diff --git a/.github/workspace/TEST-workflowspython-9-10.yml b/.github/workflows/TEST-workflowspython-9-10.yml similarity index 100% rename from .github/workspace/TEST-workflowspython-9-10.yml rename to .github/workflows/TEST-workflowspython-9-10.yml From 53ecfa8c975b5e02a89e2ba50b66758d198a3145 Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 17:59:45 +0900 Subject: [PATCH 40/41] Rename output_by_version.yml to TEST-output_by_version.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ์ด๋ฆ„ ๋ณ€๊ฒฝ --- .../{output_by_version.yml => TEST-output_by_version.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{output_by_version.yml => TEST-output_by_version.yml} (100%) diff --git a/.github/workflows/output_by_version.yml b/.github/workflows/TEST-output_by_version.yml similarity index 100% rename from .github/workflows/output_by_version.yml rename to .github/workflows/TEST-output_by_version.yml From 1ca059b6fd32d4934d5b342adb84cac39228b9ea Mon Sep 17 00:00:00 2001 From: SUJIN KIM <68360160+sujin23@users.noreply.github.com> Date: Sun, 9 Jul 2023 18:48:54 +0900 Subject: [PATCH 41/41] Create Final.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. python-version์— "3.9"์™€ "3.10"์„ ์ถ”๊ฐ€ํ•˜์—ฌ ๋ฒ„์ „ ๋ณ„ ์ถœ๋ ฅ 2. upload-artifact ์ฝ”๋“œ ์ฐธ๊ณ ํ•˜์—ฌ ์•„ํ‹ฐํŒฉํŠธ๋ฅผ ์ €์žฅํ•  ์ˆ˜ ์žˆ๋„๋ก ํ•จ 3. ์•„ํ‹ฐํŒฉํŠธ๋ฅผ ์—ฌ๋Ÿฌ ๋ฒˆ ์—…๋กœ๋“œํ•˜์—ฌ ํŒŒ์ผ์ด ๋ฎ์–ด์”Œ์›Œ์ง€๋Š” ์˜ค๋ฅ˜ ํ•ด๊ฒฐ --- .github/workflows/Final.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/Final.yml diff --git a/.github/workflows/Final.yml b/.github/workflows/Final.yml new file mode 100644 index 0000000..b0b3e0e --- /dev/null +++ b/.github/workflows/Final.yml @@ -0,0 +1,30 @@ +name: Python + +on: workflow_dispatch + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + + steps: + - name: Create a file + run: echo ${{ matrix.python-version }} > my_file.txt + + - name: Accidentally upload to the same artifact via multiple jobs + uses: actions/upload-artifact@v3 + + with: + name: my-artifact-${{ matrix.python-version }} + path: ${{ github.workspace }} + + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)"