Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ch1_condition_1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
on: workflow_dispatch
jobs:
build:
if: github.repository == 'jihyungSong/github-action-course'
if: github.repository == 'ParkJaeyun94/github-action-course'
runs-on: ubuntu-latest
steps:
- name: Step 1
run: |
echo "Run Step 1, Say Hello"
- name: Step 2
if: github.event_name == 'xxxxxxx'
if: github.event_name == 'workflow_dispatch'
run: |
echo "Run Step 2, Say Hello"

2 changes: 1 addition & 1 deletion .github/workflows/ch4_google_cloud_credential_oidc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
uses: google-github-actions/upload-cloud-storage@v1
with:
path: ./build.txt
destination: githubaction-test-01/
destination: githubaction-test-001/
process_gcloudignore: false
- name: Notice when a build finishes
if: always()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
uses: google-github-actions/upload-cloud-storage@v1
with:
path: ./build.txt
destination: githubaction-test-01/
destination: githubaction-test-001/
process_gcloudignore: false
- name: Notice when a build finishes
if: always()
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ch5_go_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
architecture: amd64
- name: Check linting
run: |
go fmt ./...
Expand All @@ -32,7 +33,7 @@ jobs:
- name: Setup AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: us-east-1
aws-region: ap-northeast-2
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE_ARN }}
role-duration-seconds: 3600
- name: make s3 folders each platform
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ch5_java_gradle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build with Gradle
run: ./gradlew build
- name: Archive build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: java-build-artifacts
path: app/build/libs
Expand All @@ -34,7 +34,7 @@ jobs:
id-token: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: java-build-artifacts
- name: Setup AWS Credentials
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ch5_js_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org/'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm install
- name: Publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ch9_my_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- name: Humancat action
id: generate-humancat
uses: jihyungSong/humancat@v1.0
uses: ParkJaeyun94/humancat@v1.0
with:
human-name: 'Ryan Song'
cat-name: 'Haku'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# github-action-course

This is Test
This is Test2
2 changes: 1 addition & 1 deletion build_sample/container_build/pip_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
fastapi
uvicorn
humancat
humancat2
10 changes: 5 additions & 5 deletions build_sample/js/humancat/package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"name": "humancat",
"name": "humancat2",
"version": "0.0.8",
"description": "GitHub Action Build Sample",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jihyungSong/github-action-course.git"
"url": "git+https://github.com/ParkJaeyun94/github-action-course.git"
},
"keywords": [
"human",
"cat",
"humancat"
],
"author": "jihyungSong",
"author": "ParkJaeyun94",
"license": "ISC",
"bugs": {
"url": "https://github.com/jihyungSong/github-action-course/issues"
"url": "https://github.com/ParkJaeyun94/github-action-course/issues"
},
"homepage": "https://github.com/jihyungSong/github-action-course#readme"
"homepage": "https://github.com/ParkJaeyun94/github-action-course#readme"
}
8 changes: 4 additions & 4 deletions build_sample/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from setuptools import setup, find_packages

setup(
name='humancat',
name='humancat2',
version='0.0.5',
description='GitHub Action Build Test Sample',
author='jihyungSong',
author_email='bluese05@gmail.com',
url='https://github.com/jihyungSong/github-action-course',
author='jaeyun',
author_email='imjyp2727@gmail.com',
url='https://github.com/ParkJaeyun94/github-action-course',
install_requires=[],
packages=find_packages(exclude=[]),
keywords=['sample', 'cat', 'human', 'humancat'],
Expand Down
1 change: 0 additions & 1 deletion cache_sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"humancat": "^0.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
Expand Down