File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,13 @@ jobs:
102
102
- name : Fetch build artifacts
103
103
if : ${{ github.ref_type == 'tag' }}
104
104
uses : actions/download-artifact@v3
105
+ - name : Make binaries executable
106
+ if : ${{ github.ref_type == 'tag' }}
107
+ run : |
108
+ chmod +x full/*
109
+ chmod +x small/*
110
+ chmod +x full-vista/*
111
+ chmod +x small-vista/*
105
112
- name : Publish release
106
113
if : ${{ github.ref_type == 'tag' }}
107
114
uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 1
1
Revision history for Perl-Dist-APPerl
2
+ v0.0.4 2022-10-15
3
+ Make Actions release binaries executable
4
+
2
5
v0.0.3 2022-10-14
3
6
Bumped cosmopolitan versions. Add category to apperlm list. Add
4
7
leading '-' support to config parsing to remove items from an
Original file line number Diff line number Diff line change 1
1
package Perl::Dist::APPerl ;
2
2
# Copyright (c) 2022 Gavin Hayes, see LICENSE in the root of the project
3
- use version; our $VERSION = version-> declare(" v0.0.3 " );
3
+ use version; our $VERSION = version-> declare(" v0.0.4 " );
4
4
use strict;
5
5
use warnings;
6
6
use JSON::PP qw( decode_json) ;
You can’t perform that action at this time.
0 commit comments