Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d90b1b2689 | |||
| 3747c6e38e | |||
| 10816168b7 | |||
| 87fb26e440 | |||
| 38bb9b95aa |
@@ -17,7 +17,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v2.3.5
|
||||
|
||||
- name: Update action.yml to build locally
|
||||
run: |
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v2.3.5
|
||||
|
||||
- name: OCI meta
|
||||
id: meta
|
||||
@@ -92,7 +92,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.3.4
|
||||
uses: actions/checkout@v2.3.5
|
||||
|
||||
- name: Get sample PKGBUILD
|
||||
run: wget https://github.com/datakrama/plenti-bin/raw/f5ffaaee02a2119aa16f6b7a27e87e198e096b47/PKGBUILD
|
||||
@@ -125,7 +125,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v2.3.5
|
||||
|
||||
- name: Get branch/tag names
|
||||
id: branch-name
|
||||
|
||||
+9
-1
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.1.1] - 2021-10-26
|
||||
|
||||
### Fixed
|
||||
|
||||
- Wrong `.git` folder when using `path` parameter
|
||||
|
||||
## [1.1.0] - 2021-10-02
|
||||
|
||||
### Added
|
||||
@@ -43,7 +49,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
- Initial release
|
||||
|
||||
[Unreleased]: https://github.com/datakrama/archlinux-package-action/compare/v1.1.0...HEAD
|
||||
[Unreleased]: https://github.com/datakrama/archlinux-package-action/compare/v1.1.1...HEAD
|
||||
[1.1.1]: https://github.com/datakrama/archlinux-package-action/compare/v1.1.0...v1.1.1
|
||||
[1.1.0]: https://github.com/datakrama/archlinux-package-action/compare/v1.0.3...v1.1.0
|
||||
[1.0.3]: https://github.com/datakrama/archlinux-package-action/compare/v1.0.2...v1.0.3
|
||||
[1.0.2]: https://github.com/datakrama/archlinux-package-action/compare/v1.0.1...v1.0.2
|
||||
[1.0.1]: https://github.com/datakrama/archlinux-package-action/compare/v1.0.0...v1.0.1
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ echo "::group::Copying file from $WORKPATH to /tmp/gh-action"
|
||||
WORKPATH=$GITHUB_WORKSPACE/$INPUT_PATH
|
||||
# Set path permision
|
||||
sudo -u builder mkdir /tmp/gh-action
|
||||
sudo -u builder cp -rfv "$WORKPATH"/.git /tmp/gh-action/.git
|
||||
sudo -u builder cp -rfv "$GITHUB_WORKSPACE"/.git /tmp/gh-action/.git
|
||||
sudo -u builder cp -fv "$WORKPATH"/PKGBUILD /tmp/gh-action/PKGBUILD
|
||||
cd /tmp/gh-action
|
||||
echo "::endgroup::"
|
||||
|
||||
Reference in New Issue
Block a user